home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / dosref.EXE / CHAPTER.002 < prev    next >
Text File  |  1996-01-31  |  113KB  |  1,916 lines

  1.  
  2.    **  Programmer's Technical Reference for MSDOS and the IBM PC **
  3.  
  4.                          C H A P T E R   T W O
  5.  
  6.  
  7.        CPU Port Assignments, System Memory Map, BIOS Data Area,
  8.                          Interrupts 00h to 09h
  9.  
  10.  
  11.  
  12.                                 C O N T E N T S
  13.  
  14. Introduction ................................................... 2**1
  15. System Memory Map .............................................. 2**2
  16. A Brief Guide to Current Memory Terminology .................... 2**3
  17. PC Port Assignment ............................................. 2**4
  18. Reserved Memory Locations ...................................... 2**5
  19. Absolute Addresses ............................................. 2**6
  20. The IBM PC System Interrupts (Overview) ........................ 2**7
  21. Quick Chart of Interrupts 00h-0FFh ............................. 2**8
  22. IRQ Usage Chart ................................................ 2**9
  23. The IBM-PC System Interrupts 00h-0Fh (in detail) ............... 2**10
  24.  
  25.  
  26.  
  27. Introduction ................................................... 2**1
  28.  
  29.   For consistency in this reference, all locations and offsets are in 
  30. hexadecimal unless otherwise specified. All hex numbers are prefaced 
  31. with a leading zero if they begin with an alphabetic character, and 
  32. are terminated with a lowercase H (h). The formats vary according to 
  33. common usage. 
  34.  
  35.  
  36.  
  37. System Memory Map .............................................. 2**2
  38.  
  39.   The IBM PC handles its address space in 64k segments, divided into 
  40. 16k fractions and then further as necessary. 
  41.  
  42. ┌──────┬─────┬─────┬────────────────────────────────────────────────┐
  43. │start │start│end  │                                                │
  44. │addr. │addr.│addr.│                     usage                      │
  45. │(dec) │   (hex)   │                                                │
  46. ├──────┴───────────┴────────────────────────────────────────────────┤
  47. │   *640k RAM Area*                                                 │
  48. ├──────┬─────────┬──────────────────────────────────────────────────┤
  49. │ 0k   │         │  start of RAM, first K is interrupt vector table │
  50. │ 16k  │0000-03FF│  PC-0 system board RAM ends                      │
  51. │ 32k  │0400-07FF│                                                  │
  52. │ 48k  │0800-0BFF│                                                  │
  53. ├──────┼─────────┼──────────────────────────────────────────────────┤
  54. │ 64k  │1000-13FF│  PC-1 system board RAM ends                      │
  55. │ 80k  │1400-17FF│                                                  │
  56. │ 96k  │1800-1BFF│                                                  │
  57. │ 112k │1C00-1FFF│                                                  │
  58. ├──────┼─────────┼──────────────────────────────────────────────────┤
  59. │ 128k │2000-23FF│                                                  │
  60. │ 144k │2400-27FF│                                                  │
  61. │ 160k │2800-2BFF│                                                  │
  62. │ 176k │2C00-2FFF│                                                  │
  63. ├──────┼─────────┼──────────────────────────────────────────────────┤
  64. │ 192k │3000-33FF│                                                  │
  65. │ 208k │3400-37FF│                                                  │
  66. │ 224k │3800-3BFF│                                                  │
  67. │ 240k │3C00-3FFF│                                                  │
  68. ├──────┼─────────┼──────────────────────────────────────────────────┤
  69. │ 256k │4000-43FF│  PC-2 system board RAM ends                      │
  70. │ 272k │4400-47FF│                                                  │
  71. │ 288k │4800-4BFF│                                                  │
  72. │ 304k │4C00-4FFF│                                                  │
  73. ├──────┼─────────┼──────────────────────────────────────────────────┤
  74. │ 320k │5000-53FF│                                                  │
  75. │ 336k │5400-57FF│                                                  │
  76. │ 352k │5800-5BFF│                                                  │
  77. │ 368k │5C00-5FFF│                                                  │
  78. ├──────┼─────────┼──────────────────────────────────────────────────┤
  79. │ 384k │6000-63FF│                                                  │
  80. │ 400k │6400-67FF│                                                  │
  81. │ 416k │6800-6BFF│                                                  │
  82. │ 432k │6C00-6FFF│                                                  │
  83. ├──────┼─────────┼──────────────────────────────────────────────────┤
  84. │ 448k │7000-73FF│                                                  │
  85. │ 464k │7400-77FF│                                                  │
  86. │ 480k │7800-7BFF│                                                  │
  87. │ 496k │7C00-7FFF│                                                  │
  88. ├──────┼─────────┼──────────────────────────────────────────────────┤
  89. │ 512k │8000-83FF│                                                  │
  90. │ 528k │8400-87FF│                                                  │
  91. │ 544k │8800-8BFF│  the original IBM PC-1 BIOS limited memory to    │
  92. │ 560k │8C00-8FFF│  544k                                            │
  93. ├──────┼─────────┼──────────────────────────────────────────────────┤
  94. │ 576k │9000-93FF│                                                  │
  95. │ 592k │9400-97FF│                                                  │
  96. │ 609k │9800-9BFF│                                                  │
  97. │ 624k │9C00-9FFF│ to 640k (top of RAM address space)               │
  98. │ 639k │         │ some RLL and SCSI hard disk adapters, some four  │
  99. │      │         │ floppy controller cards, some AMI and PS/2 BIOS, │
  100. │      │         │ and assorted other cards sometimes try to use the│
  101. │      │         │ last K for storing temporary data.  This can     │
  102. │      │         │ cause trouble with programs which assume they    │
  103. │      │         │ have a full 640k, and will prevent backfilling   │
  104. │      │         │  memory with some memory managers.  Beware!      │
  105. ├──────┴─────────┴──────────────────────────────────────────────────┤
  106. │A0000 ***** 64k ***** EGA/VGA starting address                     │
  107. │A0000 ***** 64k ***** Toshiba 1000 DOS ROM (MS-DOS 2.11V)          │
  108. ├──────┬───────────┬────────────────────────────────────────────────┤
  109. │ 640k │A0000-A95B0│  MCGA 320x200 256 color video buffer           │
  110. │      │     -AF8C0│  MCGA 640x480 2 color video buffer             │
  111. │      │     -A3FFF│                                                │
  112. │ 656k │A4000-A7FFF│                                                │
  113. │ 672k │A8000-ABFFF│this 64k segment may be used for contiguous DOS │
  114. │ 688k │AC000-AFFFF│RAM with appropriate hardware and software      │
  115. ├──────┴───────────┴────────────────────────────────────────────────┤
  116. │B0000 ***** 64k ***** mono and CGA address                         │
  117. ├──────┬───────────┬────────────────────────────────────────────────┤
  118. │ 704k │B0000-B3FFF│4k  mono display | The PCjr and early Tandy 1000│
  119. │ 720k │B4000-B7FFF│                 | BIOS revector direct write to│
  120. │ 736k │B8000-BBFFF│16k CGA          | the B8 area to the Video Gate│
  121. │ 756k │BC000-BFFFF│                 | Array and reserved system RAM│
  122. ├──────┴───────────┴────────────────────────────────────────────────┤
  123. │C0000 ***** 64k *************** expansion ROM                      │
  124. ├──────┬───────────┬────────────────────────────────────────────────┤
  125. │ 768k │C0000-C3FFF│16k EGA BIOS C000:001E EGA BIOS signature       │
  126. │      │           │    (the letters 'IBM')                         │
  127. │      │C0000-C7FFF│32k VGA BIOS extension (typical)                │
  128. │ 784k │C4000-C5FFF│                                                │
  129. │      │C6000-C63FF│256 bytes IBM PGC video communications area     │
  130. │      │C6400-C7FFF│                                                │
  131. │ 800k │C8000-CBFFF│16k hard disk controller BIOS, drive 0 default  │
  132. │      │CA000      │    some 2nd floppy (HD) controller BIOSes      │
  133. │ 816k │CC000-CDFFF│ 8k IBM PC Network NETBIOS                      │
  134. │      │CE000-CFFFF│                                                │
  135. ├──────┴───────────┴────────────────────────────────────────────────┤
  136. │D0000 ***** 64k ***** expansion ROM                                │
  137. ├──────┬───────────┬────────────────────────────────────────────────┤
  138. │ 832k │D0000-D7FFF│32k IBM Cluster Adapter  | PCjr first ROM cart. │
  139. │      │      DA000│voice communications     | address area.        │
  140. │ 848k │D4000-D7FFF│                         | Common EMS board     │
  141. │ 864k │D8000-DBFFF│                         | paging area.         │
  142. │      │D8000-DBFFF│ IBM Token Ring default Share RAM address       │
  143. │      │DC000      │ IBM Token Ring default BIOS/MMIO address       │
  144. │ 880k │DC000-DFFFF│                         |                      │
  145. │      │DE000      │4k  TI Pro default video buffer                 │
  146. ├──────┴───────────┴────────────────────────────────────────────────┤
  147. │E0000 ***** 64k ***** expansion ROM                                │
  148. │                      wired to ROM sockets in the original IBM AT  │
  149. │                      used by ABIOS extensions on some PS/2 models │
  150. ├──────┬───────────┬────────────────────────────────────────────────┤
  151. │ 896k │E0000-E3FFF│                         | PCjr second ROM cart.│
  152. │ 912k │E4000-E7FFF│                         | address area         │
  153. │ 928k │E8000-EBFFF│                         |                      │
  154. │ 944k │EC000-EFFFF│                         | spare ROM sockets on │
  155. │      │           │                         | IBM AT (reserved in  │
  156. │      │           │                         | hardware)            │
  157. ├──────┴───────────┴────────────────────────────────────────────────┤
  158. │F0000 ***** 64k ***** system                                       │
  159. ├──────┬───────────┬────────────────────────────────────────────────┤
  160. │ 960k │F0000-F3FFF│reserved by IBM          | cartridge address    │
  161. │ 976k │F4000-     │                         | area (PCjr cartridge │
  162. │      │F6000      │ROM BASIC Begins         | BASIC)               │
  163. │ 992k │F8000-FB000│                         |                      │
  164. │ 1008k│FC000-FFFFF│ROM BASIC and original   |                      │
  165. │      │           │BIOS (Compatibility BIOS |                      │
  166. │      │           │in PS/2)                 |                      │
  167. │ 1024k│      FFFFF│end of memory (1024k) for 8088 machines         │
  168. ├──────┼───────────┴─┬──────────────────────────────────────────────┤
  169. │ 384k │100000-15FFFF│ 80286/AT extended memory area, 1Mb mbd.      │
  170. │ 15Mb │100000-FFFFFF│ 80286/AT extended memory address space       │
  171. │ 15Mb │160000-FDFFFF│ Micro Channel RAM expansion (15Mb ext. mem)  │
  172. │ 128k │FE0000-FFFFFF│ system board ROM        (PS/2 Advanced BIOS) │
  173. ├──────┼─────────────┴───┬──────────────────────────────────────────┤
  174. │  64k │C0000000-C000FFFF│ Weitek "Abacus" math coprocessor         │
  175. │      │                 │ memory-mapped I/O                        │
  176. └──────┴─────────────────┴──────────────────────────────────────────┘
  177.  
  178. 1) Note that the ROM BIOS has a duplicated address space which causes 
  179.    it to "appear" both at the end of the 1 megabyte real mode space
  180.    and at the end of the 16 megabyte protected mode space.  The
  181.    addresses from 0E0000 to 0FFFFF are equal to 0FE0000 to 0FFFFFF.
  182.    This is necessary due to differences in the memory addressing
  183.    between Real and Protected Modes. 
  184.  
  185. 2) Late IBM XTs and ATs with support for the 101-key keyboards ran out 
  186.    of ROM space at the top of their ROM blocks. These machines "wrap
  187.    around" and jump to an address lower than their original entry
  188.    point to store their code. 
  189.  
  190.                           ┌────────────────────┐
  191.                     1024k │   top of memory    │
  192.                           ├────────────────────┤
  193.                      976k │ original BIOS area │ ────┐
  194.                           ├────────────────────┤     │
  195.                           │ extended BIOS area │  <──┘
  196.                           ├────────────────────┤
  197.  
  198. 3) IBM PS/2s reserve the last K of memory before A000 for a scratch 
  199.    area for the ABIOS ROM routines.  This limits PS/2 machines to
  200.    639k.  Apparently only 10 to 20 bytes of memory is actually used;
  201.    though there was room for that much down in unused portions of
  202.    the BIOS Data Area, IBM evidently decided to leave room to grow. 
  203.  
  204.     Sometimes other stuff can use the last K.  OMTI hard disk 
  205.     controllers' firmware wanted the last K, as do some XTs with ROM-
  206.     based disk caches.  These don't like to coexist at all.
  207.     SpeedStor (disk management software) has a program called OMTIfix
  208.     bundled to allow it to work with these controllers.  A few
  209.     extended-VGA ANSI drivers also grab the last K.  QEMM, 386Max,
  210.     and other memory managers can relocate this memory to give a 
  211.     complete 640k. 
  212.  
  213. 4) When running with a 286 and memory manager board or on a 386, PC-
  214.    MOS/386 relocates its kernel to the 0C000-0F000 high memory area
  215.    to leave more of the lower 640k for applications.  0A000-0BFFFF
  216.    is reserved for swapping video RAM as it becomes active.  MOS
  217.    supports monochrome and CGA modes directly. 
  218.  
  219. 5) Most AT compatible machines use the entire Fxxx block for BIOS.  
  220.    PS/2 and PS/2 compatible machines take an entire 128k from E000-
  221.    FFFF.  Most real IBM machines also have the BASIC ROMs taking up
  222.    some of the high address space. 
  223.  
  224.  
  225.  
  226. A Brief Guide to Current Memory Terminology .................... 2**3
  227.  
  228. LOW MEMORY - 0000h to around 0:5(something), comprising the 80x8x
  229.              interrupt vector table, the BIOS Data Area, DOS Data
  230.              Area, etc.
  231.  
  232. CONVENTIONAL MEMORY - from the end of low memory to the beginning of
  233.              the "reserved by IBM" A000 segment (640k).
  234.  
  235. HIGH MEMORY - originally noncontiguous RAM stuffed into the "reserved
  236.              for ROM expansion" areas, typically segments D000 and
  237.              E000.  DOS normally can't access this memory without a
  238.              driver of some sort, but it's easy to put RAMdisks and
  239.              stuff in there.
  240.  
  241. HIGH DOS MEMORY - same as above.
  242.  
  243. CONVENTIONAL MEMORY - extra RAM stuck at A000, assuming the machine
  244.              already has 640k, appears as conventional memory accessible
  245.              to DOS and applications.  IBM clones can typically add 64k
  246.              before bumping into a mono card or 96k before hitting a
  247.              color card.  This address is part of the EGA/VGA video RAM
  248.              area and most EGA cards don't like system memory at A000.
  249.              With semi-compatible machines like the IBM PCjr or Sanyo
  250.              55x, it was possible to get as much as 960k of real, usable
  251.              DOS conventional memory, since they used a different video
  252.              system and had no hard disk ROM to break up the space
  253.              between 640k and the beginning of the ROM BIOS.
  254.  
  255. EXPANDED MEMORY - LIM 3.2, LIM 4.0, or EEMS 3.2 bank switched memory.
  256.              A RAM "window" allows an application to save a block of
  257.              RAM to an expansion board.  The window size and location
  258.              varies according to the EMS standard being used.
  259.  
  260. EXTENDED MEMORY - this is the "native mode" address space of the 80286
  261.              and later chips.  The "real mode", or 8088 addressing
  262.              scheme, sees RAM as a collection of segments and offsets
  263.              with a limit on segment size.  "Protected mode" addressing
  264.              uses a flat linear addressing scheme.  8088 and 80188 chips
  265.              do not have extended memory.
  266.  
  267. HIGH MEMORY - by fiddling a bit with the segment/offset stuff, you can
  268.              get an extra block of addressable 8088-mode memory just
  269.              over the 1 meg address space when using 80286 and later
  270.              microprocessors.  Microsoft issued their "HMA" (High Memory
  271.              Area) standard to try to standardize use of this block.
  272.              Though it really is "high" memory, "high" had for many years
  273.              referred to memory between 640k and 1mb.  This creates more
  274.              confusion for new programmers.
  275.  
  276. EMS - this is expanded memory as described above
  277.  
  278. XMS - Microsoft is pushing an "Extended Memory Standard" which defines
  279.       a page-switching scheme much like EMS.  The only real difference
  280.       is that XMS uses protected-mode RAM instead of a special paged
  281.       RAM board.
  282.  
  283. XMS - some severely brain-damaged jerk at IBM issued documentation for
  284.       some IBM *EMS* boards referring to the boards as *XMS*.  This
  285.       was a classic blunder, and now some IBM-followers are picking up
  286.       the aberrant terminology.  This is guaranteed to confuse some
  287.       people.  To make it simple, if it needs an expansion board, it is
  288.       EMS no matter what the vendor calls it.
  289.  
  290. UMB - Upper Memory Blocks.  These are defined in the Microsoft XMS
  291.       Specification.  Unfortunately, some people have begun using "UMB"
  292.       to refer to the HMA and High DOS areas indiscriminately.
  293.  
  294.  
  295.  
  296. PC Port Assignment ............................................. 2**4
  297.  
  298.   The Intel 80x86 processors have a 64K I/O memory space for 
  299. addressing external devices.  The 8088 through 80286 processors can 
  300. divide their I/O space into either 8 bit or 16 bit ports.  The 386 and 
  301. later can have 8, 16, or 32 bit ports. 
  302.  
  303.   Some port addresses are mapped to the motherboard, others to the 
  304. slots. The XT's boundary was at 200h, while the AT and EISA is at 
  305. 100h.  Many cards avoid the 100h-200h zone for XT compatibility. 
  306.  
  307.   These are functions common across the IBM range.  The PCjr, PC-AT, 
  308. PC Convertible and PS/2 (both buses) have enhancements.  In some 
  309. cases, the AT and PS/2 series ignore, duplicate, or reassign ports 
  310. arbitrarily.  If your code incorporates specific port addresses for 
  311. video or system board control it would be wise to have your 
  312. application determine the machine type and video adapter and address 
  313. the ports as required. 
  314.  
  315.  
  316.  hex address                   Function                   Models
  317.                                                 PCjr|PC|XT|AT|CVT|M30|PS2
  318.  
  319.  0000-000F    8237 DMA controller                  PC------------------
  320.  0000-001F    8237 DMA controller 1                 -----AT---------PS2
  321.  0020-0027    8259A interrupt controller            -------------------
  322.  0020-002F    IOSGA interrupt function              ----------------PS2
  323.  0020-003F    8259A interrupt controller  (AT)      -------------------
  324.  0020-0021    interrupt controller 1, 8259A        PC----AT---------PS2
  325.  0040-0043    programmable timer 8253              PC------------------
  326.  0040-0047    programmable timers                   ----------------PS2
  327.  0040-005F    8253-5 programmable timers            -----AT------------
  328.               note 1) 0041 was memory refresh in PCs. Not used in PS/2.
  329.                    2) A few early 80386 machines used static RAM and did
  330.                       not use refresh at all. The PCjr refreshes by the
  331.                       video vertical retrace signal.
  332.  0040         8254 programmable interval timer 1 system clock (counter 0)
  333.  0041         8254 timer 1 refresh request (counter 1)
  334.  0042         8254 timer 1 speaker tone (counter 2) -------------------
  335.  0043         8254 timer 1 command register         -------------------
  336.  0049         8254 timer 2 not used (counter 1)     -------------------
  337.  004A         programmable interval timer 2         -------------------
  338.  004B         programmable interval timer 2         -------------------
  339.  0060-0063    keyboard controller 8255A             PC-----------------
  340.  0060-006F    8042 keyboard controller              -----AT------------
  341.  0060         8042 data I/O register                -------------------
  342.  0060         IOSGA keyboard input port             ----------------PS2
  343.  0061         speaker                         PCjr PC-XT-AT-CVT--------
  344.  0061         IOSGA speaker control                 ------------M30-PS2
  345.  0061         On some clones, setting or clearing bit 2 controls
  346.               Turbo mode
  347.  0061         Toshiba 1000 - system command         -------------------
  348.  0062         IOSGA configuration control           ------------M30-PS2
  349.  0062         Toshiba 1000 - System Status, port C  -------------------
  350.  0063         SSGA, undocumented                    ----------------PS2
  351.  0063         Toshiba 1000 - mode set               -------------------
  352.  0064         keyboard auxiliary device             ----------------PS2
  353.  0064         keyboard 8042 status register         -----AT------------
  354.  0065         AT&T 6300+ high/low chip select       -------------------
  355.  0065-006A    SSGA, undocumented                    ----------------PS2
  356.  0066         AT&T 6300+ system configuration switch 2
  357.  0067         AT&T 6300+ system configuration switch 1
  358.  0068         C&T chipsets, turbo mode              -------------------
  359.  006B         SSGA, RAM enable/remap                ----------------PS2
  360.  006C-006F    SSGA, undocumented                    ----------------PS2
  361.  0070         AT CMOS write internal register       -------------------
  362.  0071         AT CMOS read internal register        -------------------
  363.  0070-0071    CMOS real-time clock, NMI mask        ----------------PS2
  364.  0070-007F    CMOS real-time clock, NMI mask        -----AT, AT&T 6300+
  365.  0074-0076    reserved                              ----------------PS2
  366.  0080-0083    AT&T 6300+ DMA page registers (8 bit) -------------------
  367.  0080-008F    SSGA DMA page registers               ----------------PS2
  368.  0080-009F    DMA page registers, 74LS612           -----AT------------
  369.               Channel 2 = 0081
  370.               Channel 3 = 0082
  371.               Channel 1 = 0083
  372.               Channel 0 = 0087
  373.               Channel 6 = 0089
  374.               Channel 5 = 008B
  375.  0090         central arbitration control port (Micro Channel)
  376.  0091         card selected feedback           (Micro Channel)
  377.  0092         system control port A            (Micro Channel)
  378.  0092         Fast Gate A20, some C&T chipsets, Micronics motherboards
  379.  0093         reserved                         (Micro Channel)
  380.  0094         system board setup               (Micro Channel)
  381.  0096         POS "CD SETUP" selector          (Micro Channel)
  382.  00A0-00A1    Interrupt controller 2, 8259A         -----AT---------PS2
  383.  00A0-00A3    AT&T 6300+, NMI register              -------------------
  384.  00A0-00AF    IOSGA NMI mask register               ----------------PS2
  385.  00B0-00BF    realtime clock/calendar, (undocumented) --------------PS2
  386.  00C0-00C3    AT&T 6300+, reserved                  -------------------
  387.  00C0-00CF    DOS ROM register, Toshiba 1000        -------------------
  388.  00C0-00CF    8237A-5 word DMA controller
  389.  00C0-00DF    reserved                        PCjr PC XT AT CVT M30
  390.  00D0-00D3    AT&T 6300+, reserved                  -------------------
  391.  00D0-00EF    "special" register, Toshiba 1000      -------------------
  392.       00C0    0C1 key register, Toshiba 1000        -------------------
  393.       00C1    keyboard transfer register, Toshiba 1000
  394.       00C2    keyboard receive register, Toshiba 1000
  395.       00C3    keyboard status register, Toshiba 1000-------------------
  396.       00C8    DOS ROM page register, Toshiba 1000   -------------------
  397.       00E0    CPU speed control, Toshiba 1000       -------------------
  398.       00E1    keyboard status/0E2 key register, Toshiba 1000
  399.       00E2    work register, Toshiba 1000           -------------------
  400.       00E3    0E4 key register, Toshiba 1000        -------------------
  401.       00E4    system control register 0, Toshiba 1000
  402.       00E4    Weitek ABACUS NDP - bit 0=1, ABACUS is present
  403.       00E5    0E6 key register, Toshiba 1000        -------------------
  404.       00E6    system control register 1, Toshiba 1000
  405.       00EE    EMS unit index, Toshiba 1000          -------------------
  406.       00EF    EMS unit data, Toshiba 1000           -------------------
  407.  00C0-00DF    DMA controller 2, 8237A-5             -----AT---------PS2
  408.  00E0-00EF    realtime clock/calendar  (undocumented)-----------M30 PS2
  409.  00E0-00FF    AT&T 6300+, 80287                     -------------------
  410.  00F0-00FF    PS/2 math coprocessor I/O  (Model 50+)
  411.               (diskette IO on PCjr)
  412.  00F0         clear math coprocessor busy           -------------------
  413.  00F1         reset math coprocessor                -------------------
  414.  00F8-00FF    AT 80287/80387 coprocessor control    -------------------
  415.  0100-0101    PS/2 POS adapter ID response            (Micro Channel)
  416.  0100-010F    Always IN-2000 alternate 2            -------------------
  417.  0100-02F7    AT&T 6300+, reserved                  -------------------
  418.  0102-0107    PS/2 POS adapter configuration response (Micro Channel)
  419.  0110-011F    Always IN-2000 alternate 2            -------------------
  420.  0150         Geographics Drafting Board digitizer  -------------------
  421.  0180         Stargate Plus 8 multiport serial board-------------------
  422.  01F0-01F8    hard disk                             -----AT---------PS2
  423.  0200-0201    game-control adapter (joystick)       -------------------
  424.  0200-0207    Sound Blaster joystick port           -------------------
  425.  0200-020F    game controller                       PC---AT------------
  426.  0200-020F    Always IN-2000 alternate 1
  427.  0208-0209    Chips & Technology CS8221 chipset default EMS ports
  428.               alternate addresses: 218h, 258h, 268h, 2A8h, 2B8h, 2E8h
  429.  0208-020F    Toshiba 1000 - EMS unit I/O #1        -------------------
  430.  020C-020D    reserved by IBM                       -------------------
  431.  0210-0217    IBM expansion chassis (PC, XT)        -------------------
  432.  0218-021F    Toshiba 1000 - EMS unit I/O #2        -------------------
  433.  021F         reserved by IBM                       -------------------
  434.  0220         LANtastic 2mbps adapter optional      -------------------
  435.  0220         Sound Blaster 1-6 data port opt 1     -------------------
  436.  0221         Sound Blaster 1-6 register port opt 1 -------------------
  437.  0222         Sound Blaster 7-12 data port opt 1    -------------------
  438.  0223         Sound Blaster 7-12 register port opt 1-------------------
  439.               (opt 1:220h, opt 2:210h, opt 3:230h, opt 4: 240h, opt
  440.                5:250h, opt 5:260h, FM music and DSP ports also adjustable)
  441.  0220-022F    Always IN-2000 SCSI adapter default addresses
  442.  0220         IRMA 3270 terminal emulator command port
  443.  0221         IRMA 3270 terminal emulator data port 1
  444.  0222         IRMA 3270 terminal emulator data port 2
  445.  0223         IRMA 3270 terminal emulator data port 3
  446.  0224         IRMA 3270 terminal emulator reserved for future use
  447.  0225         IRMA 3270 terminal emulator reserved for future use
  448.  0226         IRMA 3270 terminal emulator Command Request flag
  449.  0226         Sound Blaster DSP Reset               -------------------
  450.  0227         IRMA 3270 terminal emulator Attention Request flag
  451.  0228         Sound Blaster FM music data/status port
  452.  0229         Sound Blaster FM music register port  -------------------
  453.  022A         Sound Blaster DSP (voice I/O and MIDI) Read Data
  454.  022C         Sound Blaster DSP Write Data or Command
  455.  022C         Sound Blaster DSP Write Buffer Status (bit 7)
  456.  022C         Marstek scanner adapter, optional     -------------------
  457.  022E         Sound Blaster DSP Data Available (bit 7)
  458.  0232-023E    Microsoft bus & InPort mouse cards (default address)
  459.  0238-023C    Microsoft bus & InPort mouse cards (optional address)
  460.  023C-023F    Logitech bus mouse                    -------------------
  461.  0240         LANtastic 2mbps adapter optional      -------------------
  462.  0240-0247    Corvus Omninet NIC opt 1              -------------------
  463.  0248-024F    Corvus Omninet NIC opt 2              -------------------
  464.  0250-0257    Corvus Omninet NIC opt 3              -------------------
  465.  0258-0259    LIM EMS 3.1 (not defined in 3.2+)     -------------------
  466.  0258-025F    Corvus Omninet NIC opt 4              -------------------
  467.  0258-025F    Toshiba 1000 - EMS unit I/O #3        -------------------
  468.  0260         LANtastic 2mbps adapter optional      -------------------
  469.  0268         CompuCom internal modem, COM20, COM21, COM22
  470.  026C         Marstek scanner adapter, optional     -------------------
  471.  0268-026F    Toshiba 1000 - EMS unit I/O #4        -------------------
  472.  0268-026F    Copy II PC Option Board, default      -------------------
  473.  0278         CompuCom internal modem, COM6, COM8, COM13
  474.  0278-027F    parallel printer port 2               -----AT------------
  475.  0278-027B    parallel printer port 3               ----------------PS2
  476.  0280-0281    Frecom FAX96 board default            -------------------
  477.  0280-0284    NetWorth Engineering vLAN V2.1 NIC opt 1
  478.  0280         LANtastic 2mbps adapter optional      -------------------
  479.  0280         Logitech ScanMan, default             -------------------
  480.  0280         Needham Electronics PB-10 EPROM burner, optional
  481.  0288-0289    Frecom FAX96 board alternate 1        -------------------
  482.  0290         Needham Electronics PB-10 EPROM burner, optional
  483.  02A0         Logitech ScanMan, option 1            -------------------
  484.  02A0-02BF    Gateway G-Net NIC opt 1               -------------------
  485.  02A0         LANtastic 2mbps adapter optional      -------------------
  486.  02A2         clock chip in early Sperry PCs        -------------------
  487.  02A8-02AF    Toshiba 1000 - EMS unit I/O #5        -------------------
  488.  02AC         Marstek scanner adapter, optional     -------------------
  489.  02B0-02DF    EGA (alternate)                       PC---AT------------
  490.  02B8-02BF    Toshiba 1000 - EMS unit I/O #6        -------------------
  491.  02B8-02B9    Novell Star Intelligent NIC opt 1     -------------------
  492.  02B8-02BB    Novell Standard NIC                   -------------------
  493.  02BC-02BD    Novell Star Intelligent NIC opt 2     -------------------
  494.  02C0-02DF    Toshiba 1000 - realtime clock         -------------------
  495.  02C0-02C7    AST SixPackPlus clock                 -------------------
  496.  02E0-02EF    Gateway G-Net NIC opt 2               -------------------
  497.  02E0-02EF    Allen-Bradley VistaLAN/PC adapter, optional address 1
  498.  02E0-02EF    Standard Microsystems ARCNET NIC opt 1-------------------
  499.  02E0         Stac Electronics AT/16 compression board (Stacker)
  500.  02E0         this is a common address for generic Arcnet cards
  501.  02E1         GPIB (adapter 0)                      -----AT------------
  502.  02E2-02E3    data acquisition (adapter 0)          -----AT------------
  503.  02E8         "industry standard" COM4              -------------------
  504.  03E8         CompuCom internal modem, COM17, COM18, COM19
  505.  02E8-02EF    Toshiba 1000 - EMS unit I/O #7        -------------------
  506.  02E8-02EF    Copy II PC Option board, optional 1   -------------------
  507.  02EC         most Marstek scanner boards, default  -------------------
  508.  02F0-02FF    Standard Microsystems ARCNET NIC opt 2-------------------
  509.  02F8-02FF    serial communications (COM2)          PC---AT---------PS2
  510.  0300         Periscope debugger card               -------------------
  511.  0300-0307    Pelican 5.5mb floppy adapter, default address
  512.  0300-030F    Standard Microsystems ARCNET NIC opt 3-------------------
  513.  0300-030F    3Com EtherLink NIC opt 1              -------------------
  514.  0300-031F    Gateway G-Net NIC opt 3               -------------------
  515.  0300-031F    prototype card                        PC---AT------------
  516.  0300-031F    Leading Edge Model D clock            -------------------
  517.  0300         some Samsung XT clock/calendar on motherboard
  518.  0300         Needham Electronics PB-10 EPROM burner, default
  519.  0300-0303    Tecmar/Wangtek PC-36 tape controller board, default
  520.  0300-0307    3Com 3C505 EtherLink Plus NIC opt 1   -------------------
  521.  0300-0307    Proteon ProNET NIC w/checksum opt 1   -------------------
  522.  0308-030F    Proteon ProNET NIC w/checksum opt 2   -------------------
  523.  0300-031F    Torus Ethernet adapter, optional address 1
  524.  0300-031F    Micom-Interlan N15010 Ethernet NIC opt 1
  525.  0300-031F    Cabletron Ethernet E-1010 NIC         -------------------
  526.  0310-0317    3Com 3C505 EtherLink Plus NIC opt 1   -------------------
  527.  0310-0317    Proteon ProNET NIC w/checksum opt 3   -------------------
  528.  0310-0317    Pelican 5.5mb floppy adapter, optional address 1
  529.  0310-031F    3Com EtherLink NIC opt 2              -------------------
  530.  0320         LANtastic 2mbps adapter optional      -------------------
  531.  0320         Perstor HD controller, primary addr   -------------------
  532.  0320         many CD-ROM proprietary adapters, default address
  533.  0320-0323    AT&T 6300+, hard disk controller      -------------------
  534.  0320-0327    3Com 3C505 EtherLink Plus NIC opt 1   -------------------
  535.  0320-032F    hard disk controller                  PC-----------------
  536.  0320-033F    Torus Ethernet adapter, optional address 2
  537.  0320-033F    Micom-Interlan N15010 Ethernet NIC opt 1
  538.  0324         Perstor PS180 HD ctrlr, 2ndary addr   -------------------
  539.  0324-0327    C: common secondary hard disk controller address
  540.  032C         Marstek scanner adapter, optional     -------------------
  541.  0330         Logitech ScanMan, option 2            -------------------
  542.  0338-033B    Tecmar PC-36 tape controller board, option 1
  543.  0340         LANtastic 2mbps adapter optional      -------------------
  544.  0340         Logitech ScanMan, option 3            -------------------
  545.  0340         Sony CD-ROM adapters                  -------------------
  546.  0340         Severn (Sony) CD-ROM adapters         -------------------
  547.  0340-0347    Proteon ProNET NIC w/checksum opt 4   -------------------
  548.  0340-0347    Novell Disk Coprocessor #1            -------------------
  549.  0348-034F    Novell Disk Coprocessor #2            -------------------
  550.  0348-0357    DCA 3278 emulator                     -------------------
  551.  0358-0359    Novell Star Intelligent NIC opt 3     -------------------
  552.  035C-035D    Novell Star Intelligent NIC opt 4     -------------------
  553.  0360         LANtastic 2mbps adapter optional      -------------------
  554.  0360-0367    PC Network (low address)              -------------------
  555.  0360-0367    AT&T StarLAN NIC opt 1                -------------------
  556.  0360-0367    Ungermann-Bass Net/One Personal Connection NIC
  557.  0368         CompuCom internal modem, COM7, COM11, COM12
  558.  0368-036B    Tecmar PC-36 tape controller board, option 2
  559.  036C         Marstek scanner adapter, optional
  560.  0368-036F    PC Network (high address)             -----AT------------
  561.  0368-036F    AT&T StarLAN NIC opt 2                -------------------
  562.  0368-036F    Ungermann-Bass Net/One Personal Connection NIC
  563.  0368-036F    Torus Ethernet adapter, optional address 3
  564.  0368-036F    Copy II PC Option Board, optional 2   -------------------
  565.  0370         Colorado Memory external tape backup control port -------
  566.               Archive external tape backup control port ---------------
  567.  0370-0377    some "second controller" floppy cards -------------------
  568.  0372         Systen OmniBridge floppy card, alternate address 1
  569.  0378         CompuCom internal modem, COM5, COM9, COM10
  570.  0378-037F    parallel printer port                 PC---AT------------
  571.  0378-037B    parallel printer port                 ----------------PS2
  572.  0380-0387    PCNet NIC, Orchid, Santa Clara, AST   -------------------
  573.  0380-0387    Pelican 5.5mb floppy adapter, optional address 2 --------
  574.  0380-0381    Frecom FAX96 board alternate 2        -------------------
  575.  0380-0384    NetWorth Engineering vLAN V2.1 NIC opt 1
  576.  0380-038F    Eicon Technology Network Adapter (X.25) board (default)
  577.  0380-038F    SDLC, bi-synchronous 2                PC---AT------------
  578.  0380-0389    BSC communications (alternate)        PC-----------------
  579.  0388-0389    Frecom FAX96 board alternate 3        -------------------
  580.  0388-0389    Sound Blaster FM music, alternate 2   -------------------
  581.  0390         Needham Electronics PB-10 EPROM burner, optional
  582.  0390-0397    Pelican 5.5mb floppy adapter, optional address 3 --------
  583.  0390-039F    Eicon Technology Network Adapter (X.25) board (alternate)
  584.  0390-0393    cluster (adapter 0)                   PC---AT------------
  585.  0398-039B    Tecmar PC-36 tape controller board, option 3
  586.  03A0-03A9    BSC communications (primary)          PC---AT------------
  587.  03AC         Marstek scanner adapter, optional     -------------------
  588.  03B0-03BF    monochrome/parallel printer adapter   PC---AT------------
  589.  03B4-03B5    video subsystem                       ----------------PS2
  590.  03B4-03BF    Hercules Mono Card                    -------------------
  591.  03BA         video subsystem                       ----------------PS2
  592.  03BC-03BF    parallel printer port 1               ----------------PS2
  593.  03C0-03CF    Enhanced Graphics Adapter             -------------------
  594.  03C0-03DA    video subsystem and DAC               ----------------PS2
  595.  03C8-03CB    Tecmar PC-36 tape controller board, option 4
  596.  03DA         video status register                 AT&T 6300, Olivetti PC
  597.  03D0-03DF    CGA, MCGA, VGA adapter control        -------------------
  598.  03DE         video mode selector register          AT&T 6300, Olivetti PC
  599.  03E0-03EF    Allen-Bradley VistaLAN/PC adapter, optional address 1
  600.  03E8h        "industry standard" COM3              -------------------
  601.  03E8         CompuCom internal modem, COM14, COM15, COM16
  602.  03E8-03EF    Copy II PC Option Board, optional 3   -------------------
  603.  03F0-03F7    floppy disk controller                PC---AT---------PS2
  604.  03F0         Colorado Memory internal tape backup control port -------
  605.  03F2         DTK high-density XT floppy controller (output only)
  606.  03F2         Systen OmniBridge floppy card, alternate address 2
  607.  03F5         DTK high-density XT floppy controller PC-XT--------------
  608.  03FC         Marstek scanner adapter, optional     -------------------
  609.  03F8-03FF    serial communications (COM1)          PC---AT---------PS2
  610.  0400-3FFF    AT&T 6300+, unused                    -------------------
  611.  06E2-06E3    data acquisition (adapter 1)          -----AT------------
  612.  0790-0793    cluster (adapter 1)                   PC---AT------------
  613.  0878         Compaq 386SX VGA BIOS relocation      -----AT------------
  614.  0920         C&T/Micronics Fast Gate A20           -------------------
  615.  0A20-0A23    IBM Token Ring opt 1                  -------------------
  616.  0A24-0A27    IBM Token Ring opt 2                  -------------------
  617.  0AE2-0AE3    data acquisition (adapter 2)          -----AT------------
  618.  0B90-0B93    cluster (adapter 2)                   PC---AT------------
  619.  OC80-0C83    EISA Product Identifier access port   -------------------
  620.               2 bytes  3 letters (compressed) abbreviated manufacturer ID.
  621.                        The letters "ISA" are reserved for old bus boards.
  622.               1 byte   2-digit product number
  623.               1 byte   2-digit revision number
  624.               (mfr. abbreviations are assigned by BCPR Services, the
  625.                group that distributes the EISA specification)
  626.  0EE2-0EE3    data acquisition (adapter 3)          -----AT------------
  627.  
  628.  1390-1393    cluster (adapter 3)                   PC---AT------------
  629.  2160         IBM XGA adapter (not motherboard) (only 1 installed)
  630.  22E1         GPIB (adapter 1)                      -------------------
  631.  2390-2393    cluster (adapter 4)                   PC---AT------------
  632.  3F00-3F1F    AT&T 6300+, -RESET CS                 -------------------
  633.  3F20-3F3F    AT&T 6300+, -PROTECTEN                -------------------
  634.  3F40-3F5F    AT&T 6300+, -TIME SLICEN              -------------------
  635.  3F60-3F7F    AT&T 6300+, -TRAPCE                   -------------------
  636.  3F80-3F9F    AT&T 6300+, -VXLATEN                  -------------------
  637.  3FA0-3FBF    AT&T 6300+, -BITREAD                  -------------------
  638.  3FC0-3FDF    AT&T 6300+, -ADADV                    -------------------
  639.  3FE0-3FFF    AT&T 6300+, -CLear TRAP address       -------------------
  640.  4258         LIM EMS 3.1 (not defined in 3.2+)     -------------------
  641.  42E1         GPIB (adapter 2)                      -----AT------------
  642.  62E1         GPIB (adapter 3)                      -----AT------------
  643.  8258         LIM EMS 3.1 (not defined in 3.2+)     -------------------
  644.  82E1         GPIB (adapter 4)                      -----AT------------
  645.  A2E1         GPIB (adapter 5)                      -----AT------------
  646.  C258         LIM EMS 3.1 (not defined in 3.2+)     -------------------
  647.  C2E1         GPIB (adapter 6)                      -----AT------------
  648.  E2E1         GPIB (adapter 7)                      -----AT------------
  649.  
  650. note 1) IOSGA = I/O Support Gate Array
  651.         SSGA = System Support Gate Array
  652.      2) I/O Addresses, hex 000 to 0FF, are reserved for the system
  653.         board I/O.  Hex 100 to 3FF are available on the I/O channel.
  654.      3) These are the addresses decoded by the current set of adapter
  655.         cards.  IBM may use any of the unlisted addresses in the future.
  656.      4) SDLC Communication and Secondary Binary Synchronous
  657.         Communications cannot be used together because their port
  658.         addresses overlap.
  659.  
  660.  
  661.  
  662. Reserved Memory Locations ...................................... 2**5
  663.  
  664. ┌───────────────────────────────────────────────────────────────────────
  665. │ 000-3FF  - 1k DOS interrupt vector table, 4 byte vectors for 
  666. │            interrupts 00h-0FFh.
  667. │   30:00  - used as a stack area during POST and bootstrap routines.
  668. │to 3F:FF    This stack area may be revectored by user applications
  669. ├───────────────────────────────────────────────────────────────────────
  670. │ ** The BIOS Data Area ** addresses from 400h to 4FFh
  671. ├─────┬───────┬─────────────────────────────────────────────────────────
  672. │addr.│ size  │                         description
  673. ├─────┼───────┼─────────────────────────────────────────────────────────
  674. │40:00│  word │ COM1 port addr. |  These addresses are zeroed out in the
  675. │40:02│  word │ COM2 port addr. |  OS/2 DOS Compatibility Box if any of
  676. │40:04│  word │ COM3 port addr. |  the OS/2 COMxx.SYS drivers are loaded.
  677. │40:06│  word │ COM4 port addr. | | note: no value for COM2 was set in
  678. │40:08│  word │ LPT1 port addr.   |       early IBM PS/2 Model 50Zs.
  679. │40:0A│  word │ LPT2 port addr.     | DESQview sets 40:00-40:02 to zero
  680. │40:0C│  word │ LPT3 port addr.     | if a program is swappable
  681. │40:0E│  word │ LPT4 port addr.   (not valid in PS/2 machines)
  682. │40:0E│  word │ PS/2 pointer to 1k extended BIOS Data Area at top of
  683. │40:10│  word │ RAM equipment flag (see int 11h)
  684. └─────┴───────┤ bits:
  685.               │ 0       0       no floppy drive present
  686.               │         1       if floppy drive present (see bits 6&7)
  687.               │ 1       0       no math coprocessor installed
  688.               │         1       if 80x87 installed  (not valid in PCjr)
  689.               │ 2,3     system board RAM   (not used on AT or PS/2)
  690.               │         0,0     16k             0,1     32k
  691.               │         1,0     48k             1,1     64k
  692.               │ 4,5     initial video mode
  693.               │         0,0     no video adapter
  694.               │         0,1     40 column color  (PCjr default)
  695.               │         1,0     80 column color
  696.               │         1,1     MDA
  697.               │ 6,7     number of diskette drives
  698.               │         0,0     1 drive         0,1     2 drives
  699.               │         1,0     3 drives        1,1     4 drives
  700.               │ 8       0       DMA present
  701.               │         1       DMA not present (PCjr, Tandy 1400,
  702.               │                 Sanyo 55x)
  703.               │ 9,A,B   number of RS232 serial ports
  704.               │ C       game adapter  (joystick)
  705.               │         0       no game adapter
  706.               │         1       if game adapter
  707.               │ D       serial printer (PCjr only)
  708.               │         0       no printer
  709.               │         1       serial printer present
  710.        ┌──────┘ E,F     number of parallel printers installed
  711.        │note 1) The IBM PC and AT store the settings of the system board
  712.        └───┐    switches or CMOS RAM setup information (as obtained by
  713.            │    the BIOS in the Power-On Self Test (POST)) at addresses
  714.            │    40:10h and 40:13h. 00000001b indicates "on", 00000000b
  715.            │    is "off".
  716.            │ 2) DOS only uses 40:10 when it's booting to find out how
  717.            │    many drives it has.  XT BIOSes use 40:10 to find out how
  718.            │    many drives they support, but AT BIOSes don't seem to -
  719.            │    they use the state bytes at 40:90/91 instead.
  720. ┌─────┬────┴──┐
  721. │40:12│  byte │ reserved (PC, AT)
  722. └─────┴───────┤ number of errors detected by infrared keyboard link
  723.               │ (PCjr) manufacturer test (Phoenix BIOS)
  724.               │   bits 7-1 reserved
  725.               │   bit  0    0 non-test mode
  726.               │             1 manufacturing test mode
  727. ┌─────┬───────┤ POST status (Convertible)
  728. │40:13│  word │ available memory size in Kbytes, less display RAM in
  729. └─────┴───────┤ PCjr, or Extended BIOS Data Area (40:0E) if used.  This
  730. ┌─────┬───────┤ is the value returned by int 12h.
  731. │40:15│  word │ reserved
  732. │40:17│  byte │ keyboard flag byte 0 (see int 9h)
  733. └─────┴───────┤ bit 7  insert mode on      3  alt pressed
  734.               │     6  capslock on         2  ctrl pressed
  735.               │     5  numlock on          1  left shift pressed
  736. ┌─────┬───────┤     4  scrollock on        0  right shift pressed
  737. │40:18│  byte │ keyboard flag byte 1 (see int 9h)    (IBM, old style)
  738. └─────┴───────┤ bits 0=not pressed, 1=pressed
  739.               │ bit 7  insert pressed      3  ctrl-numlock (pause) toggled
  740.               │     6  capslock pressed    2  PCjr keyboard click active
  741.               │     5  numlock pressed     1  PCjr ctrl-alt-capslock held
  742.               │     4  scrollock pressed   0
  743.               │
  744.               │ keyboard flag byte 1 (see int 9h)  (IBM, Phoenix, new style)
  745.               │ bit 7  insert pressed      3  ctrl-numlock (pause) toggled
  746.               │     6  capslock pressed    2  SysReq pressed (enhanced kbd)
  747.               │     5  numlock pressed     1  Left alt pressed (enhanced kbd)
  748. ┌─────┬───────┤     4  scrollock pressed   0  Right alt pressed (enhanced kbd)
  749. │40:19│  byte │ storage for alternate keypad entry (not normally used)
  750. │     │       │ Phoenix says, "Work area for Alt key and numeric keypad
  751. │     │       │ input"
  752. │40:1A│  word │ pointer to keyboard buffer head character
  753. │40:1C│  word │ pointer to keyboard buffer tail character
  754. │40:1E│32bytes│ 16 2-byte entries for keyboard circular buffer, read by
  755. │     │       │ int 16h a maximum of 15 entries are used at one time
  756. │40:3E│  byte │ drive seek status - if bit=0, next seek will recalibrate
  757. └─────┴───────┤ by repositioning to Track 0.
  758.               │ bit 7  disk hdw int occured 5  not used
  759.               │     6  not used             4  not used
  760.               │     3  drive D          bit 2  drive C
  761. ┌─────┬───────┤     1  drive B              0  drive A
  762. │40:3F│  byte │ diskette motor status (bit set to indicate condition)
  763. └─────┴───────┤ bit 7    0   current operation is a read or verify
  764.               │          1   current operation is a write or format
  765.               │     6        reserved
  766.               │     5,4      drive select states, where:
  767.               │          00  drive 0 selected
  768.               │          01  drive 1 selected
  769.               │          10  drive 2 selected
  770.               │          11  drive 3 selected
  771.               │     3    1   motor on (drive 3)
  772.               │     2    1   motor on (drive 2)
  773.               │     1    1   motor on (drive 1)
  774. ┌─────┬───────┤     0    1   motor on (drive 0)
  775. │40:40│  byte │ motor off counter
  776. │     │       │ starts at 37 and is decremented 1 by each system clock
  777. │     │       │ tick.  Motor is shut off when count = 0.
  778. │40:41│  byte │ status of last diskette operation     where:
  779. └─────┴───────┤   (IBM XT)
  780.               │ bit 7 timeout failure              3 DMA overrun
  781.               │     6 seek failure                 2 sector not found
  782.               │     5 controller failure           1 address not found
  783.               │     4 CRC failure                  0 bad command
  784.               │   (Phoenix)
  785.               │ bit 7    1   drive not ready
  786.               │     6    1   seek failure
  787.               │     5    1   controller failure
  788.               │     4,0      error codes in hex, where:
  789.               │              01h  illegal function request
  790.               │              02h  address mark not found
  791.               │              03h  write protect error
  792.               │              04h  sector not found
  793.               │              06h  diskette change line active
  794.               │                   (AT & later)
  795.               │              08h  DMA overrun
  796.               │              09h  64K DMA boundary error
  797.               │              0Ch  media type not found
  798.               │              10h  uncorrectable EEC or CRC error
  799.               │              20h  general controller failure
  800.               │              40h  seek operation failed
  801. ┌─────┬───────┤              80h  timeout
  802. │40:42│7 bytes│ NEC floppy controller chip status bytes (see Chapter 15)
  803. │40:49│  byte │ Video Control Data Area 1
  804. └─────┴───────┤ current CRT mode (hex value)
  805.               │    00h 40x25 BW      (CGA)        01h 40x25 color   (CGA)
  806.               │    02h 80x25 BW      (CGA)        03h 80x25 color   (CGA)
  807.               │    04h 320x200 color (CGA)        05h 320x200 BW    (CGA)
  808.               │    06h 640x200 BW    (CGA)        07h monochrome    (MDA)
  809.               │extended video modes (EGA/MCGA/VGA or other)
  810.               │    08h lores,16 color             09h med res,16 color
  811.               │    0Ah hires,4 color              0Bh n/a
  812.               │    0Ch med res,16 color           0Dh hires,16 color
  813. ┌─────┬───────┤    0Eh hires,4 color              0Fh hires,64 color
  814. │40:4A│  word │ # of columns on screen, coded as hex number of columns
  815. └─────┴───────┤ 20 col = 14h  (video mode 8, low res 160x200 CGA graphics)
  816.               │ 40 col = 28h
  817. ┌─────┬───────┤ 80 col = 46h
  818. │40:4C│  word │ screen buffer length in bytes
  819. ├─────┼───────┤(# of bytes used per screen page, varies with video mode)
  820. │40:4E│  word │ current screen buffer starting offset (active page)
  821. │40:50│8 words│ cursor position pages 1-8
  822. └─────┴───────┤ the first byte of each word gives the column (0-19, 39,
  823. ┌─────┬───────┤ or 79)  The second byte gives the row (0-24)
  824. │40:60│  byte │ end line for cursor   (normally 1)
  825. │40:61│  byte │ start line for cursor (normally 0)
  826. │40:62│  byte │ current video page being displayed  (0-7)
  827. │40:63│  word │ base port address of 6845 CRT controller or equivalent
  828. ├─────┼───────┤ for active display           3B4h=mono, 3D4h=color
  829. │40:65│  byte │ current setting of the CRT mode register
  830. │40:66│  byte │ current palette mask setting  (CGA)
  831. │40:67│5 bytes│ temporary storage for SS:SP during shutdown (cassette
  832. │     │       │  interface)
  833. │40:67│2 bytes│ Phoenix BIOS, address offset of option ROM
  834. │40:6C│  word │ timer counter low word
  835. │40:6E│  word │ timer counter high word
  836. │40:69│2 bytes│ Phoenix BIOS, address segment of option ROM
  837. │40:69│  byte │ HD_INSTALL (Columbia PCs) (not valid on most clones)
  838. └─────┴───────┤ bit  0    0  8 inch external floppy drives
  839.               │           1  5-1/4 external floppy drives
  840.               │      1,2     highest drive address which int 13 will
  841.               │              accept (since the floppy drives are
  842.               │              assigned 0-3, subtract 3 to obtain the number
  843.               │              of hard disks installed)
  844.               │      4,5     # of hard disks connected to expansion
  845.               │              controller
  846.               │      6,7     # of hard disks on motherboard controller
  847.               │              (if bit 6 or 7 = 1, no A: floppy is present
  848.               │              and the maximum number of floppies from int
  849. ┌─────┬───────┤              11h is 3)
  850. │40:6B│  byte │ last interrupt that occurred (used during POST only)
  851. │40:6C│2 bytes│ least significant timer count (ints 08h, 1Ah)
  852. │40:6E│2 bytes│ most significant timer count (ints 08h, 1Ah)
  853. │40:70│  byte │ 24 hour timer overflow 1 if timer went past midnight
  854. ├─────┼───────┤ it is reset to 0 each time it is read by int 1Ah
  855. │40:71│  byte │ control-break flag (bit 7 = 1 means break key hit)
  856. │40:72│  word │ reset flag
  857. └─────┴───────┤ PCjr keeps 1234h here for softboot when a cartridge is
  858.               │ inserted
  859.               │ bits 1234h = soft reset, memory check will be bypassed
  860.               │      4321h = preserve memory         (PS/2, Phoenix BIOS)
  861.               │      5678h = system suspended        (Convertible)
  862.               │      9ABCh = manufacturing test mode (Convertible)
  863.               │      ABCDh = system POST loop mode   (Convertible)
  864. ┌─────┬───────┤      0064h = burn-in mode            (Phoenix BIOS)
  865. │40:74│  byte │ status of last hard disk operation ; PCjr special disk
  866. │     │       │ control (see Chapter 8 for codes)
  867. │40:75│  byte │ # of hard disks attached (0-2)     ; PCjr special disk
  868. │     │       │                                    ; control
  869. │40:76│  byte │ HD control byte; temporary holding area for 6th 
  870. │     │       │   parameter table entry
  871. │40:77│  byte │ port offset to current hd adapter  ; PCjr special disk
  872. │     │       │                                    ; control
  873. │40:78│4 bytes│ timeout value for LPT1, LPT2, LPT3, LPT4
  874. │40:7C│4 bytes│ timeout value for COM1, COM2, COM3, COM4 (0-0FFh secs,
  875. │     │       │     default 1)
  876. │40:80│  word │ pointer to start of circular keyboard buffer,
  877. │     │       │     default 03:1E
  878. │40:82│  word │ pointer to end of circular keyboard buffer,
  879. │     │       │     default 03:3E
  880. └─────┴───────┤ note: early Zenith Z183 BIOS set these pointers to
  881. ┌─────┬───────┤       zero and ignored them.
  882. │40:84│  .... │ Video Control Data Area 2, 0040:0084 through 0040:008A
  883. │40:84│  byte │ rows on the screen minus 1 (EGA only)
  884. │40:84│  byte │ PCjr interrupt flag; timer channel 0  (used by POST)
  885. │40:84│  byte │ early AT&T 6300 PCs put 35h here for some reason,
  886. └─────┴───────┤ messing up programs that check here for number of screen
  887. ┌─────┬───────┤ rows. Later versions of the 6300 put the screen rows here
  888. │40:85│  word │ bytes per character (EGA only)
  889. │40:85│2 bytes│ (PCjr only) typamatic character to repeat
  890. │40:86│2 bytes│ (PCjr only) typamatic initial delay
  891. │40:87│  byte │ mode options (EGA only)
  892. └─────┴───────┤ bit 0   0   cursor emulation in effect
  893.               │         1   no cursor emulation
  894.               │     1   0   EGA is connected to a color display
  895.               │         1   EGA is connected to monochrome TTL display
  896.               │     2   0   wait for vertical retrace (CGA active)
  897.               │         1   don't wait for vertical retrace
  898.               │              (EGA or MDA active)
  899.               │     3   0   EGA is the active display,
  900.               │         1   "other" display is active.
  901.               │     4       reserved
  902.               │     5,6     EGA memory size
  903.               │             0,0   64k
  904.               │             0,1   128k
  905.               │             1,0   192k
  906.               │             1,1   256k
  907.               │     7   0   don't clear screen on mode changes
  908.               │         1   if the last "set mode" specified not to
  909.               │             clear the video buffer
  910.               │ mode combinations:
  911.               │ bit3  bit1     Meaning
  912.               │   0     0   EGA is active display and is color
  913.               │   0     1   EGA is active display and is monochrome
  914.               │   1     0   EGA is not active, a mono card is active
  915. ┌─────┬───────┤   1     1   EGA is not active, a CGA is active
  916. │40:87│  byte │ (PCjr only) current Fn key code
  917. ├─────┼───────┤             80h bit indicates make/break key code?
  918. │40:88│  byte │ feature bits and switches (EGA only) 0=on, 1=off
  919. └─────┴───────┤ bit 0   switch 1
  920.               │     1   switch 2
  921.               │     2   switch 3
  922.               │     3   switch 4
  923. ┌─────┬───────┤     4-7 feature bits
  924. │40:88│  byte │ (PCjr only) special keyboard status byte
  925. └─────┴───────┤ bit 7  function flag
  926.               │     6  Fn-B break
  927.               │     5  Fn pressed
  928.               │     4  Fn lock
  929.               │     3  typamatic (0=enable,1=disable)
  930.               │     2  typamatic speed (0=slow,1=fast)
  931.               │     1  extra delay bef.typamatic (0=enable)
  932. ┌─────┬───────┤     0  write char, typamatic delay elapsed
  933. │40:89│  byte │ (PCjr) current value of 6845 reg 2 (horiz. synch) used
  934. └─────┴───────┤ by ctrl-alt-cursor screen positioning routine in ROM
  935.               │ (VGA)
  936.               │ bit 0       reserved
  937.               │     1       video summing enabled
  938.               │     2   0   for color monitor attached
  939.               │         1   for mono monitor
  940.               │     3   0   for default palette loading enabled
  941.               │     4   0   for 8x8 text font
  942.               │         1   for 8x16 text font
  943. ┌─────┬───────┤     5-7     reserved
  944. │40:8A│  byte │ (PCjr) CRT/CPU Page Register Image, default 3Fh
  945. └─────┴───────┤ (VGA)  Display Combination Code Index.  This is the value
  946.               │  set/returned by function 1Ah of the Video BIOS.  This
  947.               │  byte contains an index into the ROM BIOS Display
  948.               │  Combination Code table, which is a list of byte pairs
  949.               │  that specify valid combinations of one or two video
  950.               │  subsystems.  Video subsystems are designated by the
  951.               │  following values:
  952.               │  00h     no display
  953.               │  01h     MDA with monochrome display
  954.               │  02h     CGA with color display
  955.               │  03h     reserved
  956.               │  04h     EGA with color display
  957.               │  05h     EGA with monochrome display
  958.               │  06h     Professional Graphics Adapter
  959.               │  07h     VGA with analog monochrome display
  960.               │  08h     VGA with analog color display
  961.               │  09h     reserved
  962.               │  0Ah     MCGA with digital color display
  963.               │  0Bh     MCGA with analog monochrome display
  964.               │  0Ch     MCGA with analog color display
  965. ┌─────┬───────┤  0FFh    unrecognized video subsystem
  966. │40:8B│  byte │ last diskette data rate selected
  967. └─────┴───────┤ bit 7,6 starting data transfer rate to use
  968.               │         0,0      500 kb/sec
  969.               │         0,1      300 kb/sec
  970.               │         1,0      250 kb/sec
  971.               │         1,1      reserved
  972.               │     5,4 last step rate selected
  973.               │     3   ending data transfer rate to use
  974.               │     2   reserved
  975.               │     1   reserved
  976.               │     0   1    combination floppy/fixed disk controller
  977.               │              detected
  978.               │         0    XT floppy only controller (for 360kb drive)
  979.               │              detected
  980.               │                Data Transfer Rates
  981.               │       Kbits/sec     Media   Drive   Sectors/Track
  982.               │         250         360k    360k        9
  983.               │         300         360k    1.2M        9
  984.               │         500         1.2M    1.2M       15
  985.               │         250         720k    720k        9
  986.               │         250         720k    1.4M        9
  987. ┌─────┬───────┤         500         1.4M    1.4M       18
  988. │40:8C│  byte │ hard disk status returned by controller
  989. │40:8D│  byte │ hard disk error returned by controller
  990. │40:8E│  byte │ hard disk interrupt (bit 7 = working interrupt)
  991. │40:8F│  byte │ combo_card - status of drives 0 and 1   (Tandy)
  992. └─────┴───────┤ bit 7   reserved
  993.               │     6   drive type determined for drive 1
  994.               │     5   drive multiple data rate capability for drive 1
  995.               │         0       no multiple data rate
  996.               │         1       multiple data rate
  997.               │     4   1 then drive 1 has 80 tracks
  998.               │         0 then drive 1 has 40 tracks
  999.               │     3   reserved
  1000.               │     2   drive type determined for drive 0
  1001.               │     1   drive multiple data rate capability for drive 0
  1002.               │         0       no multiple data rate
  1003.               │         1       multiple data rate
  1004.               │     0   1       the drive 0 has 80 tracks
  1005.               │         0       the drive 0 has 40 tracks
  1006.               │
  1007.               │ combo_card - status of drives 0 and 1   (Phoenix)
  1008.               │ bit 7   reserved
  1009.               │     6   drive type determined for drive 1
  1010.               │     5   drive multiple data rate capability for drive 1
  1011.               │         0       no multiple data rate
  1012.               │         1       multiple data rate
  1013.               │     4   1       drive 1 supports change line
  1014.               │         0       drive 1 does not support change line
  1015.               │     3   reserved
  1016.               │     2   drive type determined for drive 0
  1017.               │     1   drive multiple data rate capability for drive 0
  1018.               │         0       no multiple data rate
  1019.               │         1       multiple data rate
  1020.               │     0   1       drive 0 supports change line
  1021. ┌─────┬───────┤         0       drive 0 does not support change line
  1022. │40:90│2 bytes│ media state drive 0, 1, 2, 3
  1023. └─────┴───────┤ floppy_media_state
  1024.               │ bit 7,6 Data transfer rate
  1025.               │         00 - 500 K/sec
  1026.               │         01 - 300 K/sec
  1027.               │         10 - 250 K/sec
  1028.               │         11 - reserved
  1029.               │     5   double stepping required
  1030.               │     4   media/drive determined
  1031.               │     3   reserved
  1032.               │     2-0 present state
  1033.               │         000  trying 360k in 360k drive (undetermined)
  1034.               │         001  trying 360k in 1.2M drive (undetermined)
  1035.               │         010  trying 1.2M in 1.2M drive (undetermined)
  1036.               │         011  known 360k in 360k (determined)
  1037.               │         100  known 360k in 1.2M (determined)
  1038.               │         101  known 1.2M in 1.2M (determined)
  1039.               │         110  reserved, not used
  1040. ┌─────┬───────┤         111  known 3.5" drive (determined)
  1041. │40:92│2 bytes│ Diskette media work area.  Each entry is first diskette
  1042. │     │       │ media work area value tried.  One byte per drive.  Drive
  1043. │     │       │ 0 at 92h, drive 1 at 93h.
  1044. │40:94│  byte │ current track number for drive 0
  1045. │40:95│  byte │ current track number for drive 1
  1046. │40:96│  byte │ keyboard flag byte 3 (see int 9h)
  1047. │     │       │ bits 7  read ID in progress     3  right alt down
  1048. │     │       │      6  last code was first ID  2  left alt down
  1049. │     │       │      5  forced NumLock          1  last code was E0h
  1050. │     │       │      4  101/102 kbd used        0  last code was E1h
  1051. │40:97│  byte │ keyboard flag byte 2 (see int 9h)
  1052. │     │       │ bits 7  keyboard error          3  reserved
  1053. │     │       │      6  LED update in progress  2  capslock LED status
  1054. │     │       │      5  kbd sent RESEND         1  numlock LED status
  1055. │     │       │      4  kbd sent ACK            0  scrollock LED status
  1056. │40:98│  word │ offset of user wait flag (int 08h, 15h, 1Ah)
  1057. │40:9A│  word │ segment of user wait flag (int 08h, 15h, 1Ah)
  1058. │40:9C│  word │ user wait timeout value in microseconds  (low word)
  1059. │40:9E│  word │ user wait timeout value in microseconds  (high word)
  1060. │40:A0│  byte │ real time clock wait function in use
  1061. └─────┴───────┤ bits 7    wait time elapsed and posted flag
  1062.               │      6-1  reserved
  1063. ┌─────┬───────┤      0    int 15h, function 86h (WAIT) has occurred
  1064. │40:A1│  byte │ LAN A DMA channel flags
  1065. │40:A2│2 bytes│ status LAN A 0,1
  1066. │40:A4│ dword │ saved hard disk interrupt vector
  1067. │40:A8│ dword │ SAVE_PTR: EGA pointer to table of 7 parameters in
  1068. └─────┴───────┤           segment:offset format.  Format of table:
  1069.               │ D_1 dword   pointer to 1,472 byte table of 64 video
  1070.                             parameters
  1071.               │ D_2 dword   reserved
  1072.               │ D_3 dword   reserved
  1073.               │ D_4 dword   reserved
  1074.               │ D_5 dword   reserved for future use
  1075.               │ D_6 dword   reserved for future use
  1076. ┌─────┬───────┤ D_7 dword   reserved for future use
  1077. │40:B0│2 words│ international support                   (Tandy 1000 TX)
  1078. │40:B4│  byte │ keyboard NMI control flags              (Convertible)
  1079. │40:B4│  byte │ monochrome monitor hookup detect        (Tandy 1000 TX)
  1080. │     │       │ 00h not present   0FFh  present
  1081. │40:B5│ dword │ keyboard break pending flags            (Convertible)
  1082. │40:B5│  byte │ extended equipment detect  (5 bits)     (Tandy 1000 TX)
  1083. └─────┴───────┤ bit 0 = 0   drive A is 5¼
  1084.               │         1   drive A is 3½
  1085.               │     1 = 0   drive B is 5¼
  1086.               │         1   drive B is 3½
  1087.               │     2 = 0   Tandy 1000 keyboard layout
  1088.               │         1   IBM keyboard layout
  1089.               │     3 = 0   CPU slow mode
  1090.               │         1   CPU fast mode
  1091.               │     4 = 0   internal color video support enabled
  1092.               │         1   internal color video support disabled,
  1093.               │             external video enabled (chg from mb'd
  1094.               │             to expansion card)
  1095.               │     5 = 0   no external monochrome video installed
  1096. ┌─────┬───────┤         1   external monochrome video installed
  1097. │40:B6│  byte │ extended equipment detect  (1 bit)      (Tandy 1000 TX)
  1098. └─────┴───────┤ bit 0 = 0   drive C is 5¼
  1099. ┌─────┬───────┤         1   drive C is 3½
  1100. │40:B9│  byte │ port 60 single byte queue               (Convertible)
  1101. │40:BA│  byte │ scan code of last key                   (Convertible)
  1102. │40:BB│  byte │ pointer to NMI buffer head              (Convertible)
  1103. │40:BC│  byte │ pointer to NMI buffer tail              (Convertible)
  1104. │40:BD│16bytes│ NMI scan code buffer                    (Convertible)
  1105. │40:CE│  word │ day counter                    (Convertible and after)
  1106. │  to │ -04:CF│               end of BIOS Data Area
  1107. ├─────┴───────┴─────────────────────────────────────────────────────────
  1108. │ ** End of BIOS Data Area **
  1109. │ ** Beginning of "Extra Data Area" **
  1110. ├─────┬───────┬─────────────────────────────────────────────────────────
  1111. │40:D0│-40:EF │ reserved by IBM
  1112. │40:F0│16bytes│ Inter-Application Communications Area (for use by
  1113. │40:FF│       │ apps to transfer data or parameters to each other)
  1114. └─────┴───────┤  1) Used by Turbo Power's FMARK (mark memory for TSRs).
  1115.               │  2) Used by Norton Utilities' TimeMark to store the time.
  1116.               │  3) Used by BRIEF editor.
  1117. ┌─────┬───────┤  4) TopView saves this area during task switches
  1118.                  5) Some 1992/1993 Phoenix BIOS used in Gateway 2000
  1119.                     486 DX/2 motherboards are buggy and corrupt this
  1120.                     area.
  1121. │50:00│ byte  │ DOS print screen status flag
  1122. └─────┴───────┤        00h    not active or successful completion
  1123.               │        01h    print screen in progress
  1124. ┌─────┬───────┤        0FFh   error during print screen operation
  1125. │50:01│       │ Used by BASIC
  1126. │50:02-03     │ PCjr POST and diagnostics work area
  1127. │50:04│  byte │ Single drive mode status byte - not used by AT&T DOS 2.11!
  1128. └─────┴───────┤         00     logical drive A was last active
  1129.               │         01     logical drive B was last active
  1130. ┌─────────────┤        0FFh    don't know (some DOS versions)
  1131. │50:05-0E     │ PCjr POST and diagnostics work area
  1132. │50:0F│       │ BASIC: SHELL flag (set to 02h if there is a current
  1133.                        SHELL)
  1134. │50:10│  word │ BASIC: segment address storage (set with DEF SEG)
  1135. │50:12│4 bytes│ BASIC: int 1Ch clock int vector segment:offset storage
  1136. │50:16│4 bytes│ BASIC: int 23h ctrl-break int segment:offset storage
  1137. │50:1A│4 bytes│ BASIC: int 24h disk error int vector segment:offset
  1138. │50:1B-1F     │ Used by BASIC for dynamic storage
  1139. │50:20-21     │ Used by DOS for dynamic storage
  1140. └─────┴───────┤ According to the IBM TopView programmer's reference,
  1141.               │ 50:10 through 50:21 are used by BASIC, BASICA, and
  1142. ┌─────────────┤ programs compiled by the IBM BASIC Compiler.
  1143. │50:22-2C     │ Used by DOS for diskette parameter table.  See int 1Eh
  1144. └─────┴───────┤ listing for values.  In DOS 1.0 this is located in the
  1145.               │ ROM BIOS, but in DOS 1.1 and later it is a part of DOS
  1146.               │ located at 05:22.  The first byte (out of eleven) of
  1147.               │ the Disk Parameter Table contains the hexadecimal value
  1148.               │ CF in DOS 1.0 and DF in DOS 1.1 and later.
  1149.               │ DOS 1.0   24ms
  1150. ┌─────────────┤ DOS 1.1   26ms
  1151. │50:30-33     │ Used by MODE command
  1152. │50:81│       │ number of floppies installed in the system?
  1153. │50:82│       │ first hard disk drive?
  1154. │50:83│       │ last hard disk drive?
  1155. │50:34-FF     │ Unknown - Reserved for DOS
  1156. │70:00        │ PC-MOS/386 loads into the lowest available memory,
  1157. │             │ starting from this point.
  1158. ├─────────────┴─────────────────────────────────────────────────────────
  1159. │ ** End of "Extra Data Area" **
  1160. │ ** Beginning of "Extended Data Area" **  (Phoenix specs)
  1161. │    ("EDA" is segment address of top of memory)
  1162. ├──────┬──────┬─────────────────────────────────────────────────────────
  1163. │EDA:00│ byte │ Size of EDA in Kb (usually 1)
  1164. │EDA:22│ word │ pointing device driver FAR call offset
  1165. │EDA:24│ word │ pointing device driver FAR call segment
  1166. │EDA:26│ byte │ pointing device flag (first byte)
  1167. │      │      │ bits 7 = 1  command in progress
  1168. │      │      │      6 = 1  resend
  1169. │      │      │      5 = 1  acknowlege
  1170. │      │      │      4 = 1  error
  1171. │      │      │      3 = 0  reserved
  1172. │      │      │    2-0      index count
  1173. │EDA:27│ byte │ pointing device flag (second byte)
  1174. │      │      │ bits 7      device driver FAR call flag
  1175. │      │      │    6-3 = 0  reserved
  1176. │      │      │    2-0      package size
  1177. │EDA:28│ byte │ \
  1178. │  to  │      │  pointing device data
  1179. │EDA:2E│ byte │ /
  1180. │EDA:30│      │ \
  1181. │  to  │      │  reserved
  1182. │EDA:38│      │ /
  1183. │EDA:39│ word │ initial count for fail-safe timer
  1184. └──────┴──────┴─────────────────────────────────────────────────────────
  1185.  
  1186.  
  1187. Absolute Addresses ............................................. 2**6
  1188.  
  1189. 0008:0047 IO.SYS or IBMBIO.COM IRET instruction.  This is the dummy 
  1190.           routine that interrupts 01h, 03h, and 0Fh are initialized to
  1191.           during POST. 
  1192. C000:001E EGA BIOS signature (the letters IBM) 
  1193. F000:FA6E table of characters 00h-7Fh used by int 10h video BIOS
  1194.           The first 128 characters are stored here and each occupies 8
  1195.           bytes.  The high bit ones are somewhere on the video adapter
  1196.           card.
  1197. F000:FFFE PC model identification.  Note: some early IBM XTs return
  1198.           the PC ID code.  Clones can return anything.  To identify
  1199.           the submodel you need to do  an int 15h, AH=0C0h (Return
  1200.           System Configuration Parameters).  This call is not supported
  1201.           in early XT and AT BIOSes. 
  1202. FDFF:000E check this word value to identify GRiD machines: 
  1203.           00h  GRiDCase     (Old [first release] GRiDCase)
  1204.           03h  Tempest      (Tempest GRiDCase)
  1205.           04h  GRiDCase Plus
  1206.           14h  GRiDLite
  1207.           0Ch  GRiDCase Plus Minus
  1208.           34h  GRiD 1520    (GRiD AT clone)
  1209.           74h  GRiD 1530    (GRiD-386)
  1210. FE05B     POST entry point                          (IBM standard addr.)
  1211. FE2C3     NMI handler entry point                   (IBM standard addr.)
  1212. FE3FE     int 13h hard disk services entry point    (IBM standard addr.)
  1213. FE401     hard disk parameter table                 (IBM standard addr.)
  1214. FE729     baud rate generator table                 (IBM standard addr.)
  1215. FE739     int 14h async services entry point        (IBM standard addr.)
  1216. FE82E     int 16h keyboard services entry point     (IBM standard addr.)
  1217. FE987     int 09h keyboard services entry point     (IBM standard addr.)
  1218. FEC59     int 13h diskette services entry point     (IBM standard addr.)
  1219. FEF57     int 0Eh diskette hardware ISR entry point (IBM standard addr.)
  1220. FEFC7     diskette controller parameter table       (IBM standard addr.)
  1221. FEFD2     int 17h printer services entry point      (IBM standard addr.)
  1222. FF045     int 10h video services 0-Fh entry point   (IBM standard addr.)
  1223. FF065     int 10h video services entry point        (IBM standard addr.)
  1224. FF0A4     int 1Dh MDA/CGA video parameter table     (IBM standard addr.)
  1225. FF841     int 12h memory size service entry point   (IBM standard addr.)
  1226. FF84D     int 11h equipment list service entry point(IBM standard addr.)
  1227. FF859     int 15h System Services entry point       (IBM standard addr.)
  1228. FFA6E     CGA font table                            (IBM standard addr.)
  1229. FFE6E     int 1Ah clock services entry point        (IBM standard addr.)
  1230. FFEA5     int 08h system timer ISR entry point      (IBM standard addr.)
  1231. FFEF3     initial int vector offsets loaded by POST (IBM standard addr.)
  1232. FFF53     IRET opcode for dummy interrupt handler   (IBM standard addr.)
  1233. FFF54     int 05h print screen service entry point  (IBM standard addr.)
  1234. FFFF0     80x86 power-up entry point                (part of the CPU)
  1235. FFFFE     system ID byte:                           (IBM standard addr.)
  1236.  
  1237. ┌─────────────────────────────────────────────────────────────────────┐
  1238. │ ROM BIOS    ┌ model byte                                            │
  1239. │ copyright   │    ┌ submodel byte          machine                   │
  1240. │   date      │    │    ┌ revision                                    │
  1241. ├──────────┼────┼────┼────┼───────────────────────────────────────────┤
  1242. │          │ 00 │ 00 │ 00 │ AT&T 6300, Olivetti PC                    │
  1243. │          │ 2D │ -- │ -- │ Compaq PC        (4.77mHz original)       │
  1244. │          │ 30 │ -- │ -- │ Sperry PC        (built by Mitsubishi)    │
  1245. │          │ 86 │ -- │ -- │ HP-110 portable PC                        │
  1246. │          │ 9A │ -- │ -- │ Compaq Plus      (XT compatible)          │
  1247. │ 03/30/87 │ F8 │ 00 │ 00 │ PS/2 Model 80  8580-041 (16mhz)  (-071?)  │
  1248. │ 08/28/87 │ F8 │ ?? │ ?? │ PS/2 Model 80-071  16mHz  8580            │
  1249. │ 10/07/87 │ F8 │ 01 │ 00 │ PS/2 Model 80  8580-111/311 (20mhz)       │
  1250. │ 09/17/87 │ F8 │ 01 │ 01 │ PS/2 Model 80-111  20mHz  8580            │
  1251. │ 11/21/89 │    │    │    │ PS/2 Model 80-Axx                         │
  1252. │ 04/11/88 │ F8 │ 04 │ 02 │ PS/2 Model 70-121 8570-121, 8570-E61      │
  1253. │ 04/11/88 │ F8 │ 09 │ 02 │ PS/2 Model 70 desktop                     │
  1254. │ 01/18/89 │ F8 │ 0B │ 00 │ PS/2 Model 70 Portable                    │
  1255. │ 01/18/89 │    │    │    │ PS/2 Model 73                             │
  1256. │ 01/29/88 │    │    │    │ PS/2 Model 70                             │
  1257. │ 03/17/89 │    │    │    │ PS/2 Model 70-061                         │
  1258. │ 03/17/89 │    │    │    │ PS/2 Model 70-121                         │
  1259. │ 02/20/89 │    │    │    │ PS/2 Model 70-A21                         │
  1260. │ 02/20/89 │    │    │    │ PS/2 Model 70-A61                         │
  1261. │ 10/02/89 │    │    │    │ PS/2 Model 70-B21                         │
  1262. │ 12/01/89 │    │    │    │ PS/2 Model 70-A61 --> B61                 │
  1263. │ 09/09/88 │ F8 │ 0B │ 01 │ PS/2 8573-???                             │
  1264. │       ?  │ F8 │ 0C │ 00 │ PS/2 8555-031/061                         │
  1265. │ 02/20/89 │ F8 │ 0D │  ? │ PS/2 Model 70-A21                         │
  1266. │ 06/22/88 │ F8 │ 0D │ 00 │ PS/2 Model 70 8570-A21                    │
  1267. │ 09/13/85 │ F9 │ 00 │ 00 │ PC Convertible laptop                     │
  1268. │ 09/02/86 │ FA │ 00 │ 00 │ PS/2 Model 30 8530-021                    │
  1269. │ 12/12/86 │ FA │ 00 │ 00 │ PS/2 Model 30 8530-021                    │
  1270. │ 02/05/87 │    │    │    │ PS/2 Model 30 8530-021                    │
  1271. │ 08/25/88 │    │    │    │ PS/2 Model 30 8530-E21                    │
  1272. │ 05/16/88 │    │    │    │ PS/2 Model 30 8530-E21                    │
  1273. │ 06/28/89 │    │    │    │ PS/2 Model 30 8530-Exx                    │
  1274. │ 06/26/87 │ FA │ 01 │ 00 │ PS/2 Model 25 8525                        │
  1275. │ 01/10/86 │ FB │ 00 │ 00 │ XT-2 (early)                              │
  1276. │ 01/10/86 │ FB │ 00 │ 01 │ XT Model 089   (101-key keyboard          │
  1277. │ 05/09/86 │ FB │ 01 │ 02 │ XT-2 (revised) (640k m'bd, 101 key k'bd   │
  1278. │ 01/10/84 │ FC │ -- │ -- │ AT Model 099 (original 6mHz)              │
  1279. │ 06/10/85 │ FC │ 00 │ 01 │ AT Model 5170-239 6mHz (6.6 max governor) │
  1280. │ 11/15/85 │ FC │ 01 │ 00 │ AT Model 5170-339 8mHz (8.6 max governor) │
  1281. │          │ FC │ 01 │ 00 │ Compaq 386/16                             │
  1282. │          │ FC │ 01 │ 03 │ some Phoenix 386 BIOS                     │
  1283. │          │ FC │ 01 │ 81 │ some Phoenix 386 BIOS                     │
  1284. │ 04/21/86 │ FC │ 02 │ 00 │ XT/286                                    │
  1285. │ 02/13/87 │ FC │ 04 │ 00 │ PS/2 Model 50 8550-021                    │
  1286. │ 12/22/86 │ FC │ 05 │ 00 │ PS/2 Model 60 8560                        │
  1287. │ 02/13/87 │ FC │ 05 │ 00 │ PS/2 Model 60 8560                        │
  1288. │          │ FC │ 00 │    │ 7531/2 Industrial AT                      │
  1289. │          │ FC │ 06 │    │ 7552 "Gearbox"                            │
  1290. │ 04/18/88 │ FC │ 04 │ 03 │ PS/2 50Z  8550-031/061                    │
  1291. │ 01/24/90 │ FC │ 01 │ 00 │ Compaq Deskpro 80386/25e                  │
  1292. │ 10/02/89 │ FC │ 02 │ 00 │ Compaq Deskpro 386s, 386SX, 16mHz         │
  1293. │ 08/25/88 │ FC │ 09 │ 00 │ 8530-Exx (286)                            │
  1294. │ 06/01/83 │ FD │ -- │ -- │ PCjr                                      │
  1295. │ 11/08/82 │ FE │ -- │ -- │ XT, Portable PC, XT/370, 3270PC           │
  1296. │ 04/24/81 │ FF │ -- │ -- │ PC-0   (original)(16k motherboard)        │
  1297. │ 10/19/81 │ FF │ -- │ -- │ PC-1             (64k motherboard)        │
  1298. │ 08/16/82 │ FF │ -- │ -- │ PC, XT, XT/370   (256k motherboard)       │
  1299. │ 10/27/82 │ FF │ -- │ -- │ PC with HD/EGA BIOS upgrade chipset       │
  1300. │ 02/08/90 │    │    │    │ PS/2 Model 65                             │
  1301. │ 11/02/88 │    │    │    │ PS/2 Model 55SX                           │
  1302. │ 02/07/89 │    │    │    │ PS/2 Model 73-031                         │
  1303. └──────────┴────┴────┴────┴───────────────────────────────────────────┘
  1304.  
  1305.  
  1306. The IBM PC System Interrupts (Overview) ........................ 2**7
  1307.  
  1308.   The interrupt table is stored in the very lowest location in memory, 
  1309. starting at 0000:0000h.  The locations are offset from segment 0, i.e. 
  1310. location 0000h has the address for int 0, etc.  The table is 1024 
  1311. bytes in length and contains 256 four byte vectors from 00h to 0FFh.  
  1312. Each address' location in memory can be found by multiplying the 
  1313. interrupt number by 4.  For example, int 7 could be found by (7x4=28) 
  1314. or 1Bh (0000:001Bh). 
  1315.  
  1316.   These interrupt vectors normally point to ROM tables or are taken 
  1317. over by DOS when an application is run.  Some applications revector 
  1318. these interrupts to their own code to change the way the system 
  1319. responds to the user.  DOS provides int 21h function 25h to change 
  1320. interrupts from a high level; altering the interrupt vector table 
  1321. directly is not recommended, nor would it really get you anywhere. 
  1322.  
  1323.  
  1324. Quick Chart of Interrupts 00h-0FFh ............................. 2**8
  1325.  
  1326. ┌─────────────────────┬────────────────────────────────────────────────┐
  1327. │  Interrupt Address  │                                                │
  1328. ├───────┬───────┬─────┘                        Function                │
  1329. │ Number│ (Hex) │ Type                                                 │
  1330. ├───────┼───────┼─────┬────────────────────────────────────────────────┤
  1331. │   0   │ 00-03 │ CPU │  Divide by Zero                                │
  1332. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1333. │   1   │ 04-07 │ CPU │  Single Step                                   │
  1334. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1335. │   2   │ 08-0B │ CPU │  Nonmaskable                                   │
  1336. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1337. │   3   │ 0C-0F │ CPU │  Breakpoint                                    │
  1338. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1339. │   4   │ 10-13 │ CPU │  Overflow                                      │
  1340. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1341. │   5   │ 14-17 │ BIOS│  Print Screen                                  │
  1342. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1343. │   6   │ 18-1B │ hdw │  Reserved                                      │
  1344. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1345. │   7   │ 1C-1F │ hdw │  Reserved                                      │
  1346. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1347. │   8   │ 20-23 │ hdw │  Time of Day                                   │
  1348. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1349. │   9   │ 24-27 │ hdw │  Keyboard                                      │
  1350. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1351. │   A   │ 28-2B │ hdw │  Reserved                                      │
  1352. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1353. │   B   │ 2C-2F │ hdw │  Communications (8259)                         │
  1354. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1355. │   C   │ 30-33 │ hdw │  Communications                                │
  1356. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1357. │   D   │ 34-37 │ hdw │  Disk                                          │
  1358. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1359. │   E   │ 38-3B │ hdw │  Diskette                                      │
  1360. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1361. │   F   │ 3C-3F │ hdw │  Printer                                       │
  1362. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1363. │   10  │ 40-43 │ BIOS│  Video                                         │
  1364. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1365. │   11  │ 44-47 │ BIOS│  Equipment Check                               │
  1366. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1367. │   12  │ 48-4B │ BIOS│  Memory                                        │
  1368. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1369. │   13  │ 4C-4F │ BIOS│  Diskette/Disk                                 │
  1370. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1371. │   14  │ 50-53 │ BIOS│  Serial Communications                         │
  1372. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1373. │   15  │ 54-57 │ BIOS│  Cassette, System Services                     │
  1374. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1375. │   16  │ 58-5B │ BIOS│  Keyboard                                      │
  1376. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1377. │   17  │ 5C-5F │ BIOS│  Parallel Printer                              │
  1378. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1379. │   18  │ 60-63 │ BIOS│  ROM BASIC Loader                              │
  1380. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1381. │   19  │ 64-67 │ BIOS│  Bootstrap Loader                              │
  1382. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1383. │   1A  │ 68-6B │ BIOS│  Time of Day                                   │
  1384. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1385. │   1B  │ 6C-6F │ BIOS│  Keyboard Break                                │
  1386. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1387. │   1C  │ 70-73 │ BIOS│  Timer Tick                                    │
  1388. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1389. │   1D  │ 74-77 │ BIOS│  Video Initialization                          │
  1390. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1391. │   1E  │ 78-7B │ BIOS│  Diskette Parameters                           │
  1392. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1393. │   1F  │ 7C-7F │ BIOS│  Video Graphics Characters, second set         │
  1394. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1395. │   20  │ 80-83 │ DOS │  General Program Termination                   │
  1396. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1397. │   21  │ 84-87 │ DOS │  DOS Services Function Request                 │
  1398. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1399. │   22  │ 88-8B │ DOS │  Called Program Termination Address            │
  1400. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1401. │   23  │ 8C-8F │ DOS │  Control Break Termination Address             │
  1402. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1403. │   24  │ 90-93 │ DOS │  Critical Error Handler                        │
  1404. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1405. │   25  │ 94-97 │ DOS │  Absolute Disk Read                            │
  1406. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1407. │   26  │ 98-9B │ DOS │  Absolute Disk Write                           │
  1408. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1409. │   27  │ 9C-9F │ DOS │  Terminate and Stay Resident                   │
  1410. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1411. │ 28-3F │ A0-FF │ DOS │  Reserved for DOS                              │
  1412. └───────┴───────┴─────┼────────────────────────────────────────────────┤
  1413.                       │ *29h   Fast Screen Write                       │
  1414.                       │ *2Ah   Microsoft Networks - Session Layer      │
  1415.                       │        Interrupt                               │
  1416.                       │  2Fh   Multiplex Interrupt                     │
  1417.                       │ *30h   Far jump instruction for CP/M-style     │
  1418.                       │        calls                                   │
  1419.                       │  33h   Used by Microsoft Mouse Driver          │
  1420. ┌───────┬───────┬─────┼────────────────────────────────────────────────┤
  1421. │ 40-43 │100-115│ BIOS│  Reserved for BIOS                             │
  1422. └───────┴───────┴─────┼────────────────────────────────────────────────┤
  1423.                       │  40h   Hard Disk BIOS                          │
  1424.                       │  41h   Hard Disk Parameters  (except PC1)      │
  1425.                       │  42h   Pointer to screen BIOS entry  (EGA, VGA,│
  1426.                       │        PS/2)                                   │
  1427.                       │  43h   Pointer to EGA initialization parameter │
  1428.                       │        table                                   │
  1429. ┌───────┬───────┬─────┼────────────────────────────────────────────────┤
  1430. │   44  │116-119│ BIOS│  First 128 Graphics Characters                 │
  1431. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1432. │ 45-47 │120-131│ BIOS│  Reserved for BIOS                             │
  1433. └───────┴───────┴─────┼────────────────────────────────────────────────┤
  1434.                       │  45h   Reserved by IBM  (not initialized)      │
  1435.                       │  46h   Pointer to hard disk 2 params (AT, PS/2)│
  1436.                       │  47h   Reserved by IBM  (not initialized)      │
  1437. ┌───────┬───────┬─────┼────────────────────────────────────────────────┤
  1438. │   48  │132-135│ BIOS│  PCjr Cordless Keyboard Translation            │
  1439. ├───────┼───────┼─────┼────────────────────────────────────────────────┤
  1440. │   49  │136-139│ BIOS│  PCjr Non-Keyboard Scancode Translation Table  │
  1441. └───────┴───────┴─────┼────────────────────────────────────────────────┤
  1442.                       │  4Ah   Real-Time Clock Alarm (Convertible,     │
  1443.                       │        PS/2)                                   │
  1444. ┌───────┬───────┬─────┼────────────────────────────────────────────────┤
  1445. │ 50-5F │140-17F│ BIOS│  Reserved for BIOS                             │
  1446. └───────┴───────┴─────┼────────────────────────────────────────────────┤
  1447.                       │  5Ah   Cluster Adapter BIOS entry address      │
  1448.                       │ *5Bh   IBM  (cluster adapter?)                 │
  1449.                       │  5Ch   NETBIOS interface entry port            │
  1450. ┌───────┬───────┬─────┴────────────────────────────────────────────────┤
  1451. │ 60-67 │180-19F│  User Program Interrupts (availible for general use) │
  1452. └───────┴───────┴─────┬────────────────────────────────────────────────┤
  1453.                       │  60h   10-Net Network                          │
  1454.                       │  67h   Used by LIM & AQA EMS, EEMS             │
  1455. ┌───────┬───────┬─────┴────────────────────────────────────────────────┤
  1456. │ 68-7F │1A0-1FF│  Reserved by IBM                                     │
  1457. └───────┴───────┴─────┬────────────────────────────────────────────────┤
  1458.                       │  6Ch   System Resume Vector (Convertible)      │
  1459.                       │  6Fh   some Novell and 10-Net API functions    │
  1460.                       │  70h   IRQ 8, Real Time Clock Interrupt (AT,   │
  1461.                       │               PS/2)                            │
  1462.                       │  71h   IRQ 9, LAN Adapter 1                    │
  1463.                       │  72h   IRQ 10  (AT, XT/286, PS/2)  Reserved    │
  1464.                       │  73h   IRQ 11  (AT, XT/286, PS/2)  Reserved    │
  1465.                       │  74h   IRQ 12  Mouse Interrupt (PS/2)          │
  1466.                       │  75h   IRQ 13, Coprocessor Error               │
  1467.                       │  76h   IRQ 14, Hard Disk Controller (AT, PS/2) │
  1468.                       │  77h   IRQ 15 (AT, XT/286, PS/2)  Reserved     │
  1469.                       │  7Ch   IBM REXX88PC command language           │
  1470. ┌───────┬───────┬─────┴────────────────────────────────────────────────┤
  1471. │ 80-85 │200-217│  ROM BASIC                                           │
  1472. ├───────┼───────┼──────────────────────────────────────────────────────┤
  1473. │ 86-F0 │218-3C3│  Used by BASIC Interpreter When BASIC is running     │
  1474. ├───────┼───────┼──────────────────────────────────────────────────────┤
  1475. │ F1-FF │3C4-3FF│  Reserved by IBM                                     │
  1476. └───────┴───────┴──────┬───────────────────────────────────────────────┤
  1477.                        │ *0F8h  Set Shell Interrupt (OEM)              │
  1478.                        │ *0F9h  OEM SHELL service codes                │
  1479.                        └───────────────────────────────────────────────┘
  1480.  
  1481.  
  1482.  
  1483. IRQ Usage Chart ................................................ 2**9
  1484.  
  1485.   The 8259-1 Programmable Interrupt Controller (PIC) has eight 
  1486. interrupt request (IRQ) levels.  Lower numbered IRQs have higher 
  1487. priority.  On AT and PS/2 machines, a second 8259 chip is cascaded off 
  1488. the IRQ2 channel. Channels marked with an asterisk (*) are normally 
  1489. available. 
  1490.  
  1491.  (IRQ0)   55ms timer "tick" issued 18.2 times per second.
  1492.  (IRQ1)   keyboard
  1493. *(IRQ2)   for ATs, IRQ2 is used to support the second interrupt 
  1494.           controller.  In this case, int 71h (IRQ 9) is used to
  1495.           replace IRQ 2.  Hardware calls to int 71h are redirected
  1496.           to this interrupt to maintain compatibility. 
  1497.                 IRQ 8   Real Time Clock Interrupt (AT, PS/2)
  1498.               * IRQ 9   LAN Adapter 1
  1499.               * IRQ 10  (AT, XT/286, PS/2)  Reserved
  1500.               * IRQ 11  (AT, XT/286, PS/2)  Reserved
  1501.               * IRQ 12  used by EISA machines, also PS/2 Mouse
  1502.                         Interrupt
  1503.                 IRQ 13  Coprocessor Error
  1504.                 IRQ 14  Hard Disk Controller (AT, PS/2)
  1505.               * IRQ 15 (AT, XT/286, PS/2)  Reserved
  1506. *(IRQ3)   Serial Port 2 (COM2)
  1507. *(IRQ4)   Serial Port 1 (COM1) or internal modem in PCjr or
  1508.           Convertible
  1509. *(IRQ5)   XT hard disk, free on standard AT
  1510.  (IRQ6)   floppy controller
  1511.  (IRQ7)   LPT1, LPT2
  1512.  
  1513.   Two cards generally cannot share the same IRQ without conflict on 
  1514. ISA bus machines.  EISA and PS/2 machines can share IRQs, but require 
  1515. specially designed cards to do so. 
  1516.  
  1517.  
  1518. The IBM-PC System Interrupts (in detail) ....................... 2**10
  1519.  
  1520. ┌─────────────────────────────────────────────────────────────────────┐
  1521. │Interrupt  00h Divide by Zero                                        │
  1522. └─────────────────────────────────────────────────────────────────────┘
  1523. (0:0000h) (processor error).  Automatically called at end of DIV or
  1524.           IDIV operation that results in error.  Normally set by DOS to 
  1525.           display an error message and abort the program. 
  1526.  
  1527. note 1) On an 8086/8088, the return address points to the following
  1528.         instruction.
  1529.      2) On an 80286/80386, the return address points to the divide
  1530.         instruction.
  1531.      3) Trapped by PC-MOS/386 to provide a default handler for divide
  1532.         overflow  conditions.  If the application does not have its own
  1533.         handler, MOS will terminate the program with an appropriate
  1534.         message.
  1535.  
  1536.  
  1537. ┌─────────────────────────────────────────────────────────────────────┐
  1538. │Interrupt  01h Single Step                                           │
  1539. └─────────────────────────────────────────────────────────────────────┘
  1540. (0:0004h)  Taken after every instruction when CPU Trap Flag indicates
  1541.            single-step mode (bit 8 of FLAGS is 1). This is what makes
  1542.            the "T" command of DEBUG work for single stepping.  Is not
  1543.            generated after MOV to segment register or POP of segment
  1544.            register. (unless you have a very early 8088 with the
  1545.            microcode bug).
  1546.  
  1547.  
  1548. ┌─────────────────────────────────────────────────────────────────────┐
  1549. │Interrupt  02h Non-Maskable Interrupt (NMI)                          │
  1550. └─────────────────────────────────────────────────────────────────────┘
  1551. (0:0008h)  Vector not disabled via CLI.  Generated by NMI signal in
  1552.            hardware.  This function is called in the event of a memory
  1553.            parity error or may occur in the event of other hardware
  1554.            problems or failures depending on the specific
  1555.            manufacturer's hardware.  Displays the appropriate error
  1556.            message and halts the processor.
  1557.  
  1558.            Some AT chip sets apparently use int 02h to signal I/O errors
  1559.            as well as parity errors.
  1560.  
  1561.            This signal has various uses:
  1562.  
  1563.      POST parity error:                  all except PCjr & Convertible
  1564.      80x87 coprocessor interrupt:        all except PCjr & Convertible
  1565.      Keyboard interrupt:                 PCjr, Convertible
  1566.      I/O channel check:                  Convertible, PS/2 50+
  1567.      Disk controller power-on request:   Convertible
  1568.      System suspend:                     Convertible
  1569.      Realtime clock:                     Convertible
  1570.      System watchdog timer:              PS/2 50+
  1571.      Timeout interrupt:                  PS/2 50+
  1572.      DMA timer time-out interrupt:       PS/2 50+
  1573.      Infrared keyboard link:             PCjr
  1574.  
  1575.  
  1576. ┌─────────────────────────────────────────────────────────────────────┐
  1577. │Interrupt  03h Breakpoint                                            │
  1578. └─────────────────────────────────────────────────────────────────────┘
  1579. (0:000Ch)  Taken when CPU executes the 1-byte int 3 (0CCh).  Similar to
  1580. (internal) the 8080's RST instruction.  Generally used to set
  1581.            breakpoints for DEBUG.
  1582.  
  1583. note 1)  Also used by Turbo Pascal versions 1,2,3 when {$U+} specified.
  1584.      2)  Int 3s are sometimes inserted by the Microsoft Linker in
  1585.          response to an unresolved symbol.
  1586.  
  1587.  
  1588. ┌─────────────────────────────────────────────────────────────────────┐
  1589. │Interrupt  04h Divide overflow                                       │
  1590. └─────────────────────────────────────────────────────────────────────┘
  1591. (0:0010h)  Generated by INTO instruction if OF flag is set.  If the 
  1592. (internal) flag is not set, INTO is effectively a NOP.  Used to trap
  1593.            any arithmetic errors when program is ready to handle them
  1594.            rather than immediately when they occur.
  1595.  
  1596.  
  1597. ┌─────────────────────────────────────────────────────────────────────┐
  1598. │Interrupt  05h Print Screen                                          │
  1599. └─────────────────────────────────────────────────────────────────────┘
  1600. (0:0014h)  Service dumps the screen to the printer.  Invoked by int 9
  1601.            for shifted key 55 (PrtSc).  Automatically called by the
  1602.            keyboard scan when PrtSc key is pressed.  Normally executes
  1603.            a routine to print the screen, but may call any routine that
  1604.            can safely be executed from inside the keyboard handler.
  1605.            Status and result bytes are at address 0050:0000.
  1606.  
  1607. (internal) BOUND Check Failed (80286+)
  1608.            Generated by BOUND instruction when the value to be tested
  1609.            is less than the indicated lower bound or greater than the
  1610.            indicated upper bound.
  1611.  
  1612. entry   AH      05h
  1613. return  absolute address 50:0
  1614.         00h     print screen has not been called, or upon return
  1615.                 from a call there were no errors
  1616.         01h     print screen is already in progress
  1617.         0FFh    error encountered during printing
  1618. note 1) Uses BIOS services to read the screen.
  1619.      2) Output is directed to LPT1.
  1620.      3) Revectored into GRAPHICS.COM if GRAPHICS.COM is loaded.
  1621.      4) On the Tandy 1000TX this interrupt can be enabled or disabled
  1622.         across the expansion slots via a DIP switch.
  1623.      5) With early versions of DOS 5.0, at PrtScr of a graphics
  1624.         display gets garbage when GRAPHICS.COM is loaded.  This was
  1625.         fixed in one of the first updates.
  1626.  
  1627.  
  1628. ┌─────────────────────────────────────────────────────────────────────┐
  1629. │Interrupt  06h Reserved by IBM                                       │
  1630. └─────────────────────────────────────────────────────────────────────┘
  1631. (0:0018h)  On the Tandy 1000TX this interrupt can be enabled or
  1632.            disabled across the expansion slots via a DIP switch.
  1633.  
  1634.            PC-MOS/386 in 386 mode uses this interrupt to signal memory
  1635.            allocation errors.  The CS:IP of the offending instruction
  1636.            is placed on the stack.
  1637.  
  1638. (internal) Undefined Opcode (80286+)
  1639.  
  1640.  
  1641. ┌─────────────────────────────────────────────────────────────────────┐
  1642. │Interrupt  07h Reserved by IBM                                       │
  1643. └─────────────────────────────────────────────────────────────────────┘
  1644. (0:00C0h)  On the Tandy 1000TX this interrupt can be enabled or
  1645.            disabled across the expansion slots via a DIP switch.
  1646.  
  1647. (internal) No Math Unit Available (80286+)
  1648.  
  1649. note    The 80286 and later can be programmed to generate an int 7
  1650.         whenever an ESC instruction is encountered.  This could be used
  1651.         to emulate an 80x87 series coprocessor in software and be
  1652.         transparent to the application software.  It could also be used
  1653.         to make a non-Intel floating point processor emulate an 80x87.
  1654.  
  1655.  
  1656. ┌─────────────────────────────────────────────────────────────────────┐
  1657. │Interrupt  08h Timer                                                 │
  1658. └─────────────────────────────────────────────────────────────────────┘
  1659. (0:0020h)  55ms timer "tick" issued 18.2 times per second.
  1660.  (IRQ0)    8259-1 Interrupt Controller
  1661.            Updates the system time at [0040:006C] (low word) and
  1662.            [0040:006E] (high word) and issues an int 1Ch (timer). (Int
  1663.            1Ch points to an IRET instruction unless changed by a
  1664.            resident program).  The timer interrupt is given the highest
  1665.            maskable interrupt priority upon power up.
  1666.  
  1667. (internal) Double Fault (80286+ protected mode)  Called when multiple
  1668.            exceptions occur on one instruction, or an exception occurs
  1669.            in an exception handler.  If an exception occurs in the
  1670.            double fault handler, the CPU goes into SHUTDOWN mode (which
  1671.            circuitry in the PC/AT converts to a reset).
  1672.  
  1673. entry   AH      08h
  1674. return  absolute addresses:
  1675.         40:6C   number of interrupts since power on (4 bytes)
  1676.         40:70   number of days since power on       (1 byte)
  1677.         40:67   day counter on all products after AT
  1678.         40:40   motor control count - gets decremented and shuts off
  1679.                 diskette motor if zero
  1680. note 1) IBM PC LAN 1.2 and PC/MOS-386 require this count be 18.2Hz
  1681.         and will report errors if the timer rate is reprogrammed.
  1682.      2) Some "turbo" XT clones were shipped with slower-than-18.2Hz
  1683.         timers so they would appear faster to benchmark software.
  1684.         Caveat emptor.
  1685.      3) Trapped by PC-MOS/386 to ensure task switching is performed.
  1686.         This interrupt should never be disabled when running PC-MOS.
  1687.      4) Trapped by Quarterdeck's DESQview.
  1688.  
  1689.  
  1690. ┌─────────────────────────────────────────────────────────────────────┐
  1691. │Interrupt  09h Keyboard                                              │
  1692. └─────────────────────────────────────────────────────────────────────┘
  1693. (0:0024h)  Taken whenever a key is pressed or released. This is
  1694.  (IRQ1)    normally a scan code, but may also be an ACK or NAK of a
  1695.            command on AT-type keyboards.  The hardware provides the key
  1696.            pressed in a non-ASCII scan code format read at I/O port
  1697.            60h.  The servicer acknowledges receipt of the key by
  1698.            toggling bit 7 of port 61h.  (Port 61h should be read first,
  1699.            then bit 7 ORed on, output to port 61h, then ANDed off, and
  1700.            resent to port 61h).
  1701.  
  1702.            The read key is decoded to yield an ASCII character, special
  1703.            function key (such as F1) or a control function like Left
  1704.            Shift Key.  The converted ASCII character is placed into the
  1705.            next available position in the circular keyboard queue.  It
  1706.            is put in the position indicated by queue tail when it will
  1707.            not cause the loss of earlier entered data.  The queue head
  1708.            points to the oldest key pressed in the buffer which has not
  1709.            been removed from the queue (the normal process uses int 16h
  1710.            to remove keys from the queue and return the key value to the
  1711.            int 16h caller).
  1712.  
  1713.            The 16 word queue holds up to 16 keys.  If the queue head
  1714.            equals the queue tail, the queue is empty.  Valid keys in
  1715.            the queue comprise the upper byte scan code and the lower
  1716.            byte ASCII character.  If the key pressed has no ASCII
  1717.            equivalent (i.e F1 to F12), the lower byte is zero.
  1718.  
  1719.            Toggle and shift keys are not placed in the buffer, but
  1720.            appear in the two status bytes at absolute addresses
  1721.            0040:0017 and 0040:0018.
  1722.  
  1723.            Special key combinations will cause other events to occur:
  1724.  
  1725.            a) Ctrl-Alt-Del  -  Reboot computer
  1726.            b) Print screen  -  Call int 05h to print the current screen
  1727.            c) Ctrl-Break    -  Call int 1Bh control-break key
  1728.                                processor (DOS)
  1729.  
  1730. (internal) Math Unit Protection Fault (80286+ protected mode)
  1731.  
  1732. entry   AH      09h
  1733. return  at absolute memory addresses:
  1734.         40:17   bit
  1735.                 0       right shift key depressed
  1736.                 1       left shift key depressed
  1737.                 2       control key depressed
  1738.                 3       alt key depressed
  1739.                 4       ScrollLock state has been toggled
  1740.                 5       NumLock state has been toggled
  1741.                 6       CapsLock state has been toggled
  1742.                 7       insert state is active
  1743.         40:18   bit
  1744.                 0       left control key depressed
  1745.                 1       left alt key depressed
  1746.                 2       SysReq key depressed
  1747.                 3       Pause key has been toggled
  1748.                 4       ScrollLock key is depressed
  1749.                 5       NumLock key is depressed
  1750.                 6       CapsLock key is depressed
  1751.                 7       Insert key is depressed
  1752.         40:96   bit
  1753.                 0       last code was the E1h hidden code
  1754.                 1       last code was the E0h hidden code
  1755.                 2       right control key down
  1756.                 3       right alt key down
  1757.                 4       101 key Enhanced keyboard installed
  1758.                 5       force NumLock if rd ID & kbx
  1759.                 6       last character was first ID character
  1760.                 7       doing a read ID (must be bit 0)
  1761.         40:97   bit
  1762.                 0       ScrollLock indicator
  1763.                 1       NumLock indicator
  1764.                 2       CapsLock indicator
  1765.                 3       circus system indicator
  1766.                 4       ACK received
  1767.                 5       resend received flag
  1768.                 6       mode indicator update
  1769.                 7       keyboard transmit error flag
  1770.         40:1E   keyboard buffer (20h bytes)
  1771.         40:1C   buffer tail pointer
  1772.         40:72   1234h if ctrl-alt-del pressed on keyboard
  1773.      AL   scan code
  1774. note 1) Int 05h invoked if PrtSc key pressed.
  1775.      2) Int 1Bh invoked if Ctrl-Break key sequence pressed.
  1776.      3) Int 15h, AH=85h invoked on AT and after if SysReq key is pressed.
  1777.      4) Int 15h, AH=4Fh invoked on machines after AT.
  1778.      5) Int 16h, BIOS keyboard functions, uses this interrupt.
  1779.      6) PC-MOS/386 will issue this interrupt for keystrokes ocurring on
  1780.         remote serial terminals to simulate local access.
  1781.  
  1782.  
  1783. ┌─────────────────────────────────────────────────────────────────────┐
  1784. │Interrupt  0Ah  EGA Vertical Retrace                                 │
  1785. └─────────────────────────────────────────────────────────────────────┘
  1786. (0:0028h)  used by EGA vertical retrace
  1787.  (IRQ2)    8259-1 Interrupt Controller
  1788. note 1) The TOPS and PCnet adapters use this IRQ line by default.
  1789.      2) On systems equipped with 2 interrupt controller chips (8259),
  1790.         IRQ 2 is used to support the second interrupt controller.  In
  1791.         this case, int 71h (IRQ 9) is used to replace IRQ 2.  Hardware
  1792.         calls to int 71h are redirected to this interrupt to maintain
  1793.         compatibility.
  1794.      3) IRQ 2 is used for vertical retrace signal on PS/2s with VGA on
  1795.         the motherboard.  Most aftermarket VGA boards to not use this
  1796.         interrupt.
  1797.      4) Some early Samsung machines routed IRQ2 to the onboard system
  1798.         clock and did not continue IRQ2 to the I/O bus.
  1799.      5) The Roland LAPC-1 board uses IRQ2.
  1800.      6) Elographics touchscreens use optionally use IRQ2.
  1801.  
  1802. (internal) Invalid Task State Segment (80286+ protected mode)
  1803.  
  1804.  
  1805. ┌─────────────────────────────────────────────────────────────────────┐
  1806. │Interrupt  0Bh  Communications Controller (serial port) hdw. entry   │
  1807. └─────────────────────────────────────────────────────────────────────┘
  1808. (0:002Ch)  Serial Port 2 (COM2) 8259-1
  1809.  (IRQ3)
  1810. note 1) IRQ 3 may be used by SDLC (synchronous data-link control) or
  1811.         bisynchronous communications cards instead of a serial port.
  1812.      2) The TOPS and PCnet adapters use this interrupt request line as
  1813.         an alternate.
  1814.      3) On PS/2s, COM2 through COM8 share this IRQ.
  1815.      4) For most serial boards, COM4 shares this IRQ.
  1816.      5) On the Commodore Amiga 2000 with the PC Bridge Board, this
  1817.         interrupt is used for communication between the Amiga system
  1818.         board and the Bridge Board.  This was probably the lowest IRQ
  1819.         level they felt safe using, but limits the A2000's use of
  1820.         network cards, etc.
  1821.      6) This interrupt is used by part of the stack-switching code
  1822.         added to DOS 3.2 for use with Local Area Network adapters.
  1823.      7) The PS/2 puts COM3 through COM8 at port addresses above 3FFh
  1824.         (not properly decoded by older PCs) and has all of them sharing
  1825.         IRQ3.
  1826.      8) Toshiba 1600 laptop normally connects IRQ3 only to internal
  1827.         modem slot.  You must run FORCE3.COM from Toshiba to enable
  1828.         IRQ3 for the expansion slot.
  1829.      9) The BIOS Data Area was not set up to point to COM2 on POST in
  1830.         some early IBM PS/2 Model 50Z machines.
  1831.     10) Marstek 105 scanner - optional IRQ.
  1832.     11) Elographics touchscreens use optionally use IRQ 3.
  1833.     12) Default for Stargate Plus 8 multiport serial board.
  1834.     13) Tecmar/Wangtek PC-36 tape controller board - default IRQ.
  1835.     14) Older versions of Microsoft BASICA pretty well booger the IRQ 
  1836.         and port addresses for the serial ports when they exit.
  1837.  
  1838. (internal) Not Present (80286+ protected mode)
  1839.            Generated when loading a segment register if the segment
  1840.            descriptor indicates that the segment is not currently in
  1841.            memory.  May be used to implement virtual memory.
  1842.  
  1843.  
  1844. ┌─────────────────────────────────────────────────────────────────────┐
  1845. │Interrupt  0Ch  COM1 Serial Port                                     │
  1846. └─────────────────────────────────────────────────────────────────────┘
  1847. (0:0030h)  Serial Port 1 (COM1) or internal modem in PCjr or Convertible
  1848.  (IRQ4)    8259-1
  1849. note 1) IRQ 4 may be used by SDLC (synchronous data-link control) or
  1850.         bisynchronous communications cards instead of a serial port.
  1851.      2) On some PCs, this interrupt is shared by COM3.
  1852.      3) Some Tandy computers use IRQ4 instead of IRQ5 for the hard disk
  1853.         interrupt.
  1854.      4) Best performance of mice sometimes happens when they are
  1855.         configured for IRQ4 instead of IRQ3, since some mouse drivers
  1856.         may lock system interrupts for long periods.
  1857.      5) Elographics touchscreens use optionally use IRQ 4.
  1858.      6) Older versions of Microsoft BASICA pretty well booger the IRQ 
  1859.         and port addresses for the serial ports when they exit.
  1860.  
  1861. (internal) Stack Fault (80286+ protected mode)
  1862.            Generated on stack overflow/underflow.  Note that the 80286
  1863.            will shut down in real mode if SP=1 before a push.
  1864.  
  1865.  
  1866. ┌─────────────────────────────────────────────────────────────────────┐
  1867. │Interrupt  0Dh  Hard Disk                                            │
  1868. └─────────────────────────────────────────────────────────────────────┘
  1869. (0:0034h)  Miscellaneous uses
  1870.  (IRQ5)    8259-1
  1871. note 1) Various Tandy 1000 models may use this line for the 60Hhz RAM
  1872.         refresh or as "optional bus interrupt."
  1873.      2) Used by hard disk on IBM XT and most compatibles.
  1874.      3) LPT2 on AT, XT/286, and PS/2
  1875.      4) Dummy CRT vertical retrace on PCjr
  1876.      5) Marstek 105 scanner - default IRQ.
  1877.      6) Elographics touchscreens use IRQ 5 (2,3,4 & 7 also selectable)
  1878.  
  1879. (internal) General Protection Violation (80286+)
  1880.            Called in real mode when an instruction attempts to access
  1881.            a word operand located at offset 0FFFFh or a PUSH MEM or POP
  1882.            MEM instruction contains an invalid bit code in the second
  1883.            byte, or when an instruction exceeds the maximum length
  1884.            allowed (10 bytes for 80286, 15 bytes for 80386)
  1885.  
  1886.  
  1887. ┌─────────────────────────────────────────────────────────────────────┐
  1888. │Interrupt  0Eh  Diskette Interrupt                                   │
  1889. └─────────────────────────────────────────────────────────────────────┘
  1890. (0:0038h)  Generated by floppy controller on completion of an operation
  1891.  (IRQ6)    (sets bit 8 of 40:3E)
  1892. note    Tecmar PC-36 tape controllers use this setting by default, as
  1893.         they are not intended to be used when floppies are to be
  1894.         accessed.
  1895.  
  1896. (internal) Page Fault (80386+ native mode)
  1897.  
  1898.  
  1899. ┌─────────────────────────────────────────────────────────────────────┐
  1900. │Interrupt  0Fh  Reserved by IBM                                      │
  1901. └─────────────────────────────────────────────────────────────────────┘
  1902. (0:003Ch)  IRQ7 used by 8259 PPI interrupt (LPT1, LPT2)
  1903.  (IRQ7)
  1904. note 1) Generated by the LPT1 printer adapter when printer becomes
  1905.         ready.  Many printer adapters do not reliably generate this
  1906.         interrupt.
  1907.      2) This interrupt is normally avoided.  If a bad interrupt occurs,
  1908.         it will vector to this spot (when caused by a misprogrammed
  1909.         8259 PIC)
  1910.      3) According to the Creative Labs Sound Blaster board docs, some
  1911.         Tandy 1000 models use this interrupt internally.
  1912.      4) Elographics touchscreens use optionally use IRQ 7.
  1913.  
  1914.  
  1915.  
  1916.